import { type StyleProp, type ViewStyle, type TextStyle } from 'react-native'; import React from 'react'; export type Page = { title: string; subtitle: string; image: React.ReactNode; backgroundColor: string; color?: string; width?: number; containerStyle?: StyleProp; imageContainerStyle?: StyleProp; titleContainerStyle?: StyleProp; titleStyle?: StyleProp; subtitleStyle?: StyleProp; swap?: boolean; }; export declare function OnboardingPage(props: Page): React.JSX.Element; //# sourceMappingURL=Page.d.ts.map