import { type Validation } from '../common.js';
import type { Snippet } from 'svelte';
import type { HTMLFieldsetAttributes } from 'svelte/elements';
interface Props extends HTMLFieldsetAttributes {
    children: Snippet;
    label: string;
    helper?: string;
    validation?: Validation;
    inline?: boolean;
}
declare const RadioGroup: import("svelte").Component<Props, {}, "">;
type RadioGroup = ReturnType<typeof RadioGroup>;
export default RadioGroup;
