/** * RadioGroup component - Container for radio buttons. * Manages selection state for a group of radio options. * * @example * ```svelte * * Option 1 * Option 2 * Option 3 * * ``` */ interface Props { /** * The currently selected value */ value?: string | null; /** * The name attribute for the radio group */ name?: string; /** * Optional class name */ class?: string; /** * Radio options (children) */ children?: import('svelte').Snippet; } declare const RadioGroup: import("svelte").Component; type RadioGroup = ReturnType; export default RadioGroup; //# sourceMappingURL=RadioGroup.svelte.d.ts.map