import { default as React, ReactNode } from 'react';
import { FormState } from '../hooks/useFormStore';
declare const FormStateContext: React.Context<unknown>;
interface FormStateProviderProps {
    children: ReactNode;
    initialState?: Partial<FormState>;
}
export declare const FormStateProvider: ({ children, initialState, }: FormStateProviderProps) => import("react/jsx-runtime").JSX.Element;
export declare function useFormState(): {};
export { FormStateContext };
