import * as React from 'react'; export interface ICustomProps { error?: boolean; touched?: boolean; focusInput?: boolean; hideBorder?: boolean; autocomplete?: boolean; isSmallSized?: boolean; isDisabled?: boolean; hasPrefix?: boolean; hasPostfix?: boolean; prefix?: React.ReactNode | string; postfix?: React.ReactNode | string; unit?: React.ReactNode | string; } export type ITextInputProps = ICustomProps & React.InputHTMLAttributes; export interface IRef { focusField: () => void; } export declare const TextInput: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=TextInput.d.ts.map