import { AttributeModel } from './attribute.model';
import { ItemModel } from './item.model';
export declare class ChecklistModel {
    id: number;
    checklistId: number;
    code: string;
    label: string;
    sourceId: number;
    description: string;
    version: number;
    modelStatus: string;
    attributes: AttributeModel[];
    items: ItemModel[];
    constructor();
}
