import { Dispatch, ReactElement, SetStateAction } from "react"; interface IFrontendEngineFormContext { submitHandler: () => void; setSubmitHandler: Dispatch void>>; wrapInForm: boolean; setWrapInForm: Dispatch>; } interface IProps { children: ReactElement; } export declare const FrontendEngineFormContext: import("react").Context; export declare const FrontendEngineFormProvider: ({ children }: IProps) => import("react/jsx-runtime").JSX.Element; export {};