export default RadioGroup; type RadioGroup = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * The container of ``s. * @see https://w3c.github.io/aria/#radiogroup * @see https://www.w3.org/WAI/ARIA/apg/patterns/radio/ */ declare const RadioGroup: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to hide the widget. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Whether to make the widget read-only. An alias of the * `aria-readonly` attribute. */ readonly?: boolean | undefined; /** * Whether to mark the widget required. An alias of the * `aria-required` attribute. */ required?: boolean | undefined; /** * Whether to mark the widget invalid. An alias of the * `aria-invalid` attribute. */ invalid?: boolean | undefined; /** * Orientation of the widget. An alias of the * `aria-orientation` attribute. */ orientation?: "horizontal" | "vertical" | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; /** * Custom `Change` event handler. */ onChange?: ((event: CustomEvent) => void) | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to hide the widget. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Whether to make the widget read-only. An alias of the * `aria-readonly` attribute. */ readonly?: boolean | undefined; /** * Whether to mark the widget required. An alias of the * `aria-required` attribute. */ required?: boolean | undefined; /** * Whether to mark the widget invalid. An alias of the * `aria-invalid` attribute. */ invalid?: boolean | undefined; /** * Orientation of the widget. An alias of the * `aria-orientation` attribute. */ orientation?: "horizontal" | "vertical" | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; /** * Custom `Change` event handler. */ onChange?: ((event: CustomEvent) => void) | undefined; }; import type { Snippet } from 'svelte';