import { EventEmitter } from "../../stencil-public-runtime"; export type SwirlRadioState = boolean | "true" | "false"; export type SwirlRadioVariant = "default" | "card"; export declare class SwirlRadio { checked?: SwirlRadioState; description?: string; disabled?: boolean; inputId: string; inputName: string; invalid?: boolean; label?: string; tooltip?: string; value: string; variant?: SwirlRadioVariant; valueChange: EventEmitter; private onChange; private getAriaCheckedLabel; render(): any; }