import type { TextAreaProps } from './TextArea';
export default function useTextArea({ value, onChange }: Pick<TextAreaProps, 'value' | 'onChange'>): {
    inputValue: string | undefined;
    handleChange: (val: string) => void;
};
//# sourceMappingURL=useTextArea.d.ts.map