import { UkhoAbstractFormField } from '../form-field/form-field'; export declare class CheckboxComponent extends UkhoAbstractFormField { /** * Whether the checkbox is checked or not by default. */ checked: boolean; /** * This is the value which the checkbox emits when selected.. */ value: unknown; /** * When set the checkbox appears to the right of the label */ checkboxRight: boolean; /** * Whether the checkbox and label should be justified. */ justify: boolean; onChange: (checked: boolean) => void; handleChange(checked: boolean): void; writeValue(value: any): void; }