export default Radio; type Radio = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * The equivalent of the HTML `` element. * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio * @see https://w3c.github.io/aria/#radio * @see https://www.w3.org/WAI/ARIA/apg/patterns/radio/ */ declare const Radio: 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 check the widget. An alias of the `aria-checked` * attribute. */ checked?: boolean | undefined; /** * The `data-name` attribute on the `