export default RadioGroup;
type RadioGroup = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<Props>): void;
};
declare const RadioGroup: import("svelte").Component<{
    labelledby?: string;
    children?: import("svelte").Snippet;
}, {}, "">;
type Props = {
    labelledby?: string;
    children?: import("svelte").Snippet;
};
