export interface FormContextProps { resetAction: () => Promise; submitAction: () => Promise; } export declare function createFormContext(context: FormContextProps): { state: any; }; export declare function useFormContext(): FormContextProps;