import '../../stencil.core'; import { EventEmitter } from '../../stencil.core'; import { CheckedInputChangeEvent, Color, Mode, StyleEvent } from '../../interface'; export declare class Checkbox { private inputId; private labelId; el: HTMLElement; keyFocus: boolean; /** * The color to use from your application's color palette. * Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`. * For more information on colors, see [theming](/docs/theming/basics). */ color?: Color; /** * The mode determines which platform styles to use. * Possible values are: `"ios"` or `"md"`. */ mode: Mode; /** * The name of the control, which is submitted with the form data. */ name: string; /** * If true, the checkbox is selected. Defaults to `false`. */ checked: boolean; /** * If true, the user cannot interact with the checkbox. Defaults to `false`. */ disabled: boolean; /** * The value of the checkbox. */ value: string; /** * Emitted when the checked property has changed. */ ionChange: EventEmitter; /** * Emitted when the toggle has focus. */ ionFocus: EventEmitter; /** * Emitted when the toggle loses focus. */ ionBlur: EventEmitter; /** * Emitted when the styles change. */ ionStyle: EventEmitter; componentWillLoad(): void; componentDidLoad(): void; checkedChanged(isChecked: boolean): void; emitStyle(): void; onChange(): void; onKeyUp(): void; onFocus(): void; onBlur(): void; hostData(): { class: { 'in-item': boolean; 'checkbox-checked': boolean; 'checkbox-disabled': boolean; 'checkbox-key': boolean; 'interactive': boolean; } | { 'in-item': boolean; 'checkbox-checked': boolean; 'checkbox-disabled': boolean; 'checkbox-key': boolean; 'interactive': boolean; }; }; render(): JSX.Element[]; }