import { Emitter } from '@mantou/gem/lib/decorators'; import { GemElement, TemplateResult } from '@mantou/gem/lib/element'; /** * @customElement dy-radio * @attr checked * @attr value * @attr disabled */ export declare class DuoyunRadioElement extends GemElement { #private; checked: boolean; disabled: boolean; change: Emitter; value: string; constructor(); render: () => TemplateResult; } export declare const groupStyle: import("@mantou/gem/lib/utils").Sheet; export declare type Option = { label: string | TemplateResult; value?: any; }; /** * @customElement dy-radio-group * @attr disabled */ export declare class DuoyunRadioGroupElement extends GemElement { #private; orientation: 'horizontal' | 'vertical'; disabled: boolean; change: Emitter; value?: any; options?: Option[]; constructor(); render: () => TemplateResult | null; } //# sourceMappingURL=radio.d.ts.map