import { EventEmitter } from "../../stencil-public-runtime"; /** * Checkbox component * @slot default - Checkbox text * @csspart checkbox-base The container element of the checkbox * @csspart checkbox-box The checkbox element * @csspart checkbox-content The label of the checkbox */ export declare class KlevuCheckbox { #private; host: HTMLElement; /** * Is checkbox checked */ checked?: boolean; /** * Is disabled */ disabled?: boolean; /** * Name of the checkbox */ name?: string; klevuCheckboxChange: EventEmitter; componentWillRender(): void; renderContent: boolean; render(): any; }