import type { ReactNode } from 'react'; import type { StyleProp, TextStyle } from 'react-native'; export type LabelProps = { readonly children: ReactNode; /** NativeWind class; resolved via the `./nativewind` interop. */ readonly className?: string; readonly style?: StyleProp; }; export declare function Label({ children, style }: LabelProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=label.d.ts.map