import type { PropsWithChildren } from 'react'; import { shallow } from 'zustand/shallow'; import type { FormStoreStore, FormValuesState } from './types'; export declare const FormStoreContext: import("react").Context; export declare const FormStoreProvider: React.FC; export declare function useFormStore(selector: (state: FormValuesState) => T, equalityFn?: typeof shallow): T;