export interface TextFieldProps { name: string; label?: React.ReactNode; required?: boolean; tooltip?: React.ReactNode; description?: React.ReactNode; showCharCount?: boolean; inputMask?: string; onChange?: (event: React.ChangeEvent) => void; childrenAfterField?: React.ReactNode; } export declare const TextField: React.FC; export declare const TextFieldMultiple: (props: import('./multiple').WithMultipleProps & React.ClassAttributes & React.InputHTMLAttributes & TextFieldProps) => import("react/jsx-runtime").JSX.Element; export default TextFieldMultiple;