import React from 'react'; import type { ViewStyle } from 'react-native'; interface ScreenProps { title?: string; style?: ViewStyle; _tokens?: Record; children?: React.ReactNode; testID?: string; } /** * Screen layout primitive. * Wraps content in KeyboardAvoidingView for form inputs. * SafeAreaView wrapping is handled by MythikApp at the navigation level. */ export declare function Screen({ title, style, _tokens, children, testID }: ScreenProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=screen.d.ts.map