interface PropsType {
    visible: boolean;
    onCancel: () => void;
    onOk: () => void;
}
export declare const ImportModal: ({ visible, onCancel, onOk }: PropsType) => JSX.Element;
export {};
