interface ImportPageLoadingDialogContentProps { taskId: string; } interface UseImportPageLoadingDialogCallableResponse { showImportPageLoadingDialog: (props: ImportPageLoadingDialogContentProps) => void; } declare const useImportPageLoadingDialog: () => UseImportPageLoadingDialogCallableResponse; export default useImportPageLoadingDialog;