import { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; export type RootProps = { children: ReactNode; style?: StyleProp; }; export declare function Root({ children, style }: RootProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Root.d.ts.map