import { ChecklistModel } from "./Checklist"; export declare class ChecklistItemModel { label: string; value: any; disabled: boolean; isChecked: boolean; testId: string; subLevelChecklist: ChecklistModel; constructor(label: string, disabled?: boolean, isChecked?: boolean, subLevelChecklist?: ChecklistModel, testId?: string, value?: any); }