import React from 'react'; import './ImportFile.css'; export type importFileProps = { details?: React.ReactNode | string; getFile: Function; cancelImport?: Function; label: string; asIcon?: boolean; asButtonIcon?: boolean; type?: 'light' | 'secondary'; importTooltipText?: string; version?: "v2"; }; type importModalProps = { closeModal: Function; cancelImport?: Function; details?: React.ReactNode | string | undefined; getFile: Function; label: string; }; type importFileRef = { click: (event: any) => void; }; export declare const ImportModal: (props: importModalProps) => React.JSX.Element; declare const ImportFile: React.ForwardRefExoticComponent>; export default ImportFile;