import { Theme } from '@storybook/react-native-theming'; import { TextInput, TextInputProps, TextStyle } from 'react-native'; export declare function inputStyle({ theme, focused, hasError, }: { theme: Theme; focused?: boolean; hasError?: boolean; }): TextStyle; export declare const Input: import("@storybook/react-native-theming").StyledComponent & { theme?: Theme; as?: React.ElementType; } & { focused?: boolean; hasError?: boolean; }, {}, {}>;