import React from 'react'; import { InputFormatProps } from './use-textarea-format.type'; declare const useTextareaFormat: (props: InputFormatProps) => { value: string | undefined; onChange: (value: string) => void; onBlur: (e: React.FocusEvent) => void; }; export default useTextareaFormat; //# sourceMappingURL=use-textarea-format.d.ts.map