import { Emitter } from '@mantou/gem/lib/decorators'; import { GemElement } from '@mantou/gem/lib/element'; import { Option } from './radio'; import './use'; /** * @customElement dy-checkbox * @attr checked * @attr indeterminate * @attr value * @attr disabled */ export declare class DuoyunCheckboxElement extends GemElement { #private; checked: boolean; indeterminate: boolean; disabled: boolean; change: Emitter; value: string; constructor(); render: () => import("lit-html/lib/template-result").TemplateResult; } /** * @customElement dy-checkbox-group * @attr disabled */ export declare class DuoyunCheckboxGroupElement extends GemElement { #private; orientation: 'horizontal' | 'vertical'; disabled: boolean; change: Emitter; value?: any[]; options?: Option[]; constructor(); willMount: () => void; render: () => import("lit-html/lib/template-result").TemplateResult | null; } //# sourceMappingURL=checkbox.d.ts.map