import React from 'react';
type ImportModalProps = {
    open: boolean;
    onOk?: (importValue: any) => void;
    onCancel?: () => void;
};
declare const ImportModal: (props: ImportModalProps) => React.JSX.Element;
export default ImportModal;
