import { LitElement } from 'lit'; import { RadioFormControlMixin } from '@blueprintui/components/forms'; declare const BpRadio_base: typeof LitElement & RadioFormControlMixin; /** * ```typescript * import '@blueprintui/components/include/radio.js'; * ``` * * ```html * * * * * * * * * * * * * message text * * ``` * * @summary Use the radio input component when you want the user to select a single option from a list of mutually exclusive options. * @element bp-radio * @since 1.0.0 * @event {InputEvent} change - occurs when the value changes */ export declare class BpRadio extends BpRadio_base { static styles: CSSStyleSheet[]; render(): import("lit").TemplateResult<1>; } export {};