import type { FC } from 'react'; export interface FormProviderProps { formValues?: unknown; } export declare const FormProvider: FC;