import React, { ReactNode } from 'react'; type UploadSectionProps = { readFile: (data: File) => Promise[]>; supportedFileFormats: string; fileMessage: ReactNode; onTextChange: (text: string) => void; text?: string; textMessage?: string; importType: 'file' | 'text'; onImportTypeChange: (importType: 'file' | 'text') => void; }; export declare const UploadSection: React.FC; export {};