import React from 'react'; export type TextInputProps = Omit, 'type' | 'className' | 'style'> & { label: string; hideLabel?: boolean; error?: string; helperText?: string; type?: 'text' | 'email' | 'password' | 'search' | 'tel' | 'url'; className?: string; style?: React.CSSProperties; }; type TextInputComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TextInput: TextInputComponent; export default TextInput; //# sourceMappingURL=index.d.ts.map