import { UmbModalToken } from '../../modal/index.js'; export declare const UMB_ENTITY_BULK_ACTION_PROGRESS_MODAL_ALIAS = "Umb.Modal.EntityBulkActionProgress"; export interface UmbEntityBulkActionProgressModalData { /** * The headline shown in the progress dialog. */ headline: string; /** * Whether the dialog shows a determinate counter (with cancel) or an indeterminate spinner. */ mode: 'determinate' | 'indeterminate'; } export interface UmbEntityBulkActionProgressModalValue { /** * The total number of items to process. */ total: number; /** * The number of items processed so far. */ completed: number; } export declare const UMB_ENTITY_BULK_ACTION_PROGRESS_MODAL: UmbModalToken;