import * as React from 'react';
interface ImportFileSectionProps {
    readFile: (data: File) => Promise<Record<string, unknown>[]>;
    supportedFileFormats: string;
    message: React.ReactNode;
}
export declare const ImportFileSection: React.FunctionComponent<ImportFileSectionProps>;
export {};
