import React from 'react'; import { FieldRendererProps } from '../types'; interface AdminFormPageProps { companyToken: string; formFields: FieldRendererProps[]; collectionName: string; } export declare const AdminFormPage: React.FC; export {};