import { type ViewStyle, type TextStyle } from "react-native"; import { type ColorTokens } from "../../style/index.js"; export interface FieldSkin { /** Outer stack of label / control / message: the inter-element gap. */ stack: ViewStyle; /** The static label above the control, used when the label is NOT delegated. */ label: (t: ColorTokens) => TextStyle; /** The helper or error line below the control. `error` swaps the muted tone for destructive. */ message: (t: ColorTokens, error: boolean) => TextStyle; } export declare const webSkin: FieldSkin; export declare const iosSkin: FieldSkin; export declare const androidSkin: FieldSkin; //# sourceMappingURL=field.styles.d.ts.map