import type { RadioOptions, RadioOption } from "../Radio/Radio.types.js"; export interface RadioProps extends Omit, Record { options: RadioOption[]; name: string; } export interface RadioChangeDetail { value: string; } export declare function registerRadioElement(): CustomElementConstructor | undefined; //# sourceMappingURL=radio.d.ts.map