import { LitElement } from 'lit'; import { CheckboxFormControlMixin } from '@blueprintui/components/forms'; declare const BpCheckbox_base: typeof LitElement & CheckboxFormControlMixin; /** * ```typescript * import '@blueprintui/components/include/checkbox.js'; * ``` * * ```html * * * * * ``` * * @summary Checkboxes are used to select one or more options from a list. They are not intended for lists where only one option can be selected. Each checkbox can be selected independently of the others. * @element bp-checkbox * @since 1.0.0 * @event {InputEvent} change - occurs when the value changes */ export declare class BpCheckbox extends BpCheckbox_base { static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; } export {};