import { UmbModalToken } from '../../token/index.js'; import type { TemplateResult } from '../../../../../external/lit/index.js'; export interface UmbConfirmModalData { headline: string; content: TemplateResult | string; color?: 'positive' | 'danger' | 'warning'; cancelLabel?: string; confirmLabel?: string; } export type UmbConfirmModalValue = undefined; export declare const UMB_CONFIRM_MODAL: UmbModalToken;