import type { Type } from '@angular/core'; import { NodeCheckListItem, NodeCheckListItemContentType } from '@cuby-ui/api'; export declare const enum CuiCheckListBlockItemType { WITH_VERIFICATION = "NODE_CHECKLIST_ACTION_WITH_VERIFICATION", WITHOUT_VERIFICATION = "NODE_CHECKLIST_ACTION_WITHOUT_VERIFICATION", EVALUATION = "NODE_CHECKLIST_EVALUATION" } export interface CuiCheckListBlockItem { readonly id: string; readonly content: NodeCheckListItem; readonly component: Type; }