import { VCLFormFieldSchemaSwitch, VCLFormFieldSchemaSwitchParams } from '../schemas'; import { FormFieldControl } from './field'; export declare class FormFieldSwitch extends FormFieldControl { readonly onLabel: string; readonly offLabel: string; protected createDefaultValue(): boolean; } export declare class FormFieldSwitchComponent { field: FormFieldSwitch; constructor(field: FormFieldSwitch); }