import type { InputHTMLAttributes } from 'vue';
export interface TTextInputProps extends InputHTMLAttributes {
error?: boolean;
disabled?: boolean;
leftIcon?: string;
rightIcon?: string;
helperText?: string;
placeholder?: string;
label?: string;
fullWidth?: boolean;
type?: string;
value?: string | number | Date;
modelValue?: string | number | Date;
step?: string | number;
}
//# sourceMappingURL=TTextInput.types.d.ts.map