import type { CheckboxItemDto } from "./CheckboxItemDto.js"; export declare class CheckboxItem { private readonly _id; private readonly _label; private readonly _value; private readonly _checked; private readonly _indeterminate; private readonly _disabled; protected constructor(data: { id: string; label: any; value: any; checked: boolean; disabled: boolean; indeterminate: boolean; }); static create(data: CheckboxItemDto): CheckboxItem; get id(): string; get label(): any; get value(): string | number; get checked(): boolean; get indeterminate(): boolean; get disabled(): boolean; }