import React, { ReactNode } from 'react';
type UploadSectionProps = {
    readFile: (data: File) => Promise<Record<string, unknown>[]>;
    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<UploadSectionProps>;
export {};
