import { WNode, WNodeProps } from './types'; import { TextInputViewState } from './view-states'; export type TextInputRenderTheme = { styles: { value: () => WNodeProps; }; }; export declare const defaultTextInputTheme: TextInputRenderTheme; export declare function renderTextInput(state: TextInputViewState, theme?: TextInputRenderTheme): WNode; //# sourceMappingURL=render-text-input.d.ts.map