declare function useFieldState(field: string): {
    value: any;
    error: any;
    touched: any;
};
export default useFieldState;
