import { Formio as ImportedFormio } from '@formio/js'; import { PropsWithChildren } from 'react'; type BaseConfigurationArgs = { baseUrl?: string; projectUrl?: string; Formio?: typeof ImportedFormio; }; export declare const FormioContext: import('react').Context<({ Formio: any; baseUrl: any; projectUrl: any; } & { token: any; setToken: import('react').Dispatch; isAuthenticated: boolean; logout: () => Promise; }) | null>; export declare function FormioProvider({ children, baseUrl, projectUrl, Formio }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};