import { Mandatory } from "../../../viewModel";
export interface CheckListValue {
    label: string;
    value: string;
    disabled?: boolean;
    color?: string;
}
export interface CheckListItem extends CheckListValue {
    checked: boolean;
}
export interface CheckListProps {
    id: string;
    label: string;
    modelValue?: string[];
    helperMessage?: string;
    placeholder?: string;
    mandatory: Mandatory;
    values: CheckListValue[];
    disabled?: boolean;
    selectAll?: boolean;
    checkboxContainerClass?: string;
    sorted?: boolean;
}
//# sourceMappingURL=viewModel.d.ts.map