import type React from 'react';
type UploadPageProps = {
    onAgentDraftSaved: (agentId: string) => void;
    onExistingDraft: () => void;
};
export declare const UploadPage: React.FC<UploadPageProps>;
export {};
