export type RadioSize = "s" | "m" | "l"; export type RadioGroupAppearance = "default" | "button"; export type RadioGroupOrientation = "horizontal" | "vertical"; export interface EdsRadioChangeEventDetail { checked: boolean; value: string; } export interface EdsRadioGroupChangeEventDetail { value: string; } //# sourceMappingURL=radio.types.d.ts.map