import type { InjectionKey, Ref } from "vue"; import type { XyControlStatus, XyOptionValue, XySize } from "../core"; import type { XyRadioButtonStyle } from "./types"; export interface XyRadioGroupContext { buttonStyle: Ref; disabled: Ref; name: Ref; readonly: Ref; select: (value: XyOptionValue, event: Event) => void; size: Ref; status: Ref; value: Ref; } export declare const xyRadioGroupKey: InjectionKey;