import { BooleanInput } from '@angular/cdk/coercion'; import { FieldControl } from '../../field/src/field-control'; import { FieldComponent } from '../../field/src/field.component'; import * as i0 from "@angular/core"; import * as i1 from "../../theme/src/theme-check.directive"; /** * Use this component when you need to show more than one checkbox on the same line. */ export declare class CheckboxGroupComponent implements FieldControl { _field: FieldComponent; uniqueId: string; orientation: 'vertical' | 'horizontal'; /** Whether the checkbox group is disabled */ get disabled(): boolean; set disabled(value: BooleanInput); private _disabled; /** Whether the checkbox group is readonly */ get readonly(): boolean; set readonly(value: BooleanInput); private _readonly; /** Whether the checkbox group is required */ get required(): boolean; set required(value: BooleanInput); private _required; get size(): 'lg' | 'md' | 'sm'; constructor(_field: FieldComponent); isDisabled(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }