import type { Observable } from 'rxjs'; export interface CuiDialogDeleteData { readonly title: string; readonly content: string[]; readonly isDisabled?: boolean; readonly delete: () => Observable; }