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