export interface TextInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    id?: string;
    title?: string;
    error?: string;
    subtitle?: string;
    type?: React.InputHTMLAttributes<HTMLInputElement>['type'];
    iconLeft?: React.ReactNode;
    iconRight?: React.ReactNode;
    isRequired?: boolean;
    tabIndex?: number;
    containerClassName?: string;
}
