import { FC } from 'react';
interface FormPageProps {
    formGetDataUrl: string;
    formPostDataUrl: string;
    formPatchDataUrl?: string;
    formSchema: string;
    formUiSchema: string;
    sentryData?: {
        dsn: string;
        appIdentifier: string;
    };
}
export declare const FormPage: FC<FormPageProps>;
export {};
