/** @typedef {typeof __propDef.props}  RadioGroupProps */
/** @typedef {typeof __propDef.events}  RadioGroupEvents */
/** @typedef {typeof __propDef.slots}  RadioGroupSlots */
export default class RadioGroup extends SvelteComponentTyped<{
    labelledby?: string;
}, {
    [evt: string]: CustomEvent<any>;
}, {
    default: {};
}> {
}
export type RadioGroupProps = typeof __propDef.props;
export type RadioGroupEvents = typeof __propDef.events;
export type RadioGroupSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        labelledby?: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export {};
