import { EventEmitter } from '../../stencil-public-runtime'; export declare class CCheckbox { el: HTMLCCheckboxElement; internals: ElementInternals; checked: boolean; disabled: boolean; hideDetails: boolean; hint: string; hostId: string; indeterminate: boolean; label: string; required: boolean; valid: boolean; validation: string; value: string | boolean; trueValue: boolean | string; falseValue: boolean | string; hostName: string; changeValue: EventEmitter; private _container; private _rippleElement; private static _uniqueId; private get _id(); onValueChange(value: string | boolean): void; componentWillLoad(): void; private _toggleState; render(): any; }