import CheckboxListOptions from './CheckboxListOptions.vue'; import { ISettings } from '../interfaces'; import { Component } from '../component'; import { JsonSchema } from '../../json-schema'; export interface ICheckboxListSettings extends ISettings { values?: { value: string | number | boolean; label: string; }[]; display?: 'checkbox' | 'switch'; } export declare class CheckboxListComponent extends Component { static settings(): ICheckboxListSettings; static get builderInfo(): { title: string; icon: string; optionsTemplate: import("vue").VueConstructor; template: import("vue").VueConstructor; settings: ICheckboxListSettings; }; constructor(component: any, options: any); buildSchema(parentSchema: JsonSchema): void; }