import React from 'react'; export interface FormFooterContextValue { setFormStats: (disabled?: 'disabled' | 'pending') => void; setFormInfo: (info: { submit: () => void; }) => boolean; deleteFormInfo: () => void; formStats: 'disabled' | 'pending' | undefined; func: { submit: (withValidate?: boolean, callback?: () => void) => void; hasSubmit: boolean; }; } export declare const FormFooterContext: React.Context; export declare const FormFooterProvider: (props: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const useFormFooter: () => FormFooterContextValue | null; //# sourceMappingURL=form-footer-context.d.ts.map