import { FormEvent } from '../models/types'; import { InputFormControl } from './input-form-control'; export declare class CheckboxFormControl extends InputFormControl { getInputType(): string; getValue(): boolean; setValue(value: string | boolean): void; protected onValueChange(event: FormEvent): void; }