interface ImportBlockLoadingDialogContentProps { taskId: string; } interface UseImportBlockLoadingDialogCallableResponse { showImportBlockLoadingDialog: (props: ImportBlockLoadingDialogContentProps) => void; } declare const useImportBlockLoadingDialog: () => UseImportBlockLoadingDialogCallableResponse; export default useImportBlockLoadingDialog;