import React from 'react'; import { InputFormatProps } from './use-input-format.type'; declare const useInputFormat: (props: InputFormatProps) => { onChange: (v: string | undefined) => void; onBlur: (e: React.FocusEvent) => void; onFocus: (e: React.FocusEvent) => void; value: string | undefined; type: "search" | (string & {}) | "color" | "button" | "time" | "reset" | "submit" | "email" | "url" | "range" | "tel" | "hidden" | "image" | "checkbox" | "radio" | "text" | "date" | "datetime-local" | "file" | "month" | "password" | "week" | undefined; }; export default useInputFormat; //# sourceMappingURL=use-input-format.d.ts.map