import * as React from 'react';
import { ValidationErrorsMap } from '../DataImportWizard';
interface ImportSectionProps {
    data?: Record<string, unknown>[];
    onDataChange?: (data: Record<string, unknown>[]) => void;
    errors: ValidationErrorsMap | null;
}
export declare const ImportSection: React.FunctionComponent<ImportSectionProps>;
export {};
