import { RoundInputProps } from '../Input'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export type TextFieldProps = RoundInputProps & { title: string; placeholder: string; value?: string; description?: string; }; export declare const TextField: ForwardRefExoticComponent & RefAttributes>;