import React from 'react'; export type TextInputProps = Omit, 'size'> & { id?: string; size?: 'small' | 'medium' | 'large'; value: string; placeholder?: string; disabled?: boolean; leadingVisual?: React.ReactNode; validationStatus?: 'error'; required?: boolean; loading?: boolean; autoComplete?: string; autoFocus?: boolean; trailingAction?: React.ReactNode; spellCheck?: boolean; }; declare const TextInput: React.ForwardRefExoticComponent, "size"> & { id?: string; size?: "small" | "medium" | "large"; value: string; placeholder?: string; disabled?: boolean; leadingVisual?: React.ReactNode; validationStatus?: "error"; required?: boolean; loading?: boolean; autoComplete?: string; autoFocus?: boolean; trailingAction?: React.ReactNode; spellCheck?: boolean; } & React.RefAttributes>; export { TextInput }; //# sourceMappingURL=TextInput.d.ts.map