import type { AriaBoolean } from '../../../types/index.js'; interface Props { children?: import('svelte').Snippet; class?: string; disabled?: boolean; required?: boolean; readonly?: boolean; id?: string; name?: string; value?: string; form?: string; group?: unknown; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-invalid'?: AriaBoolean; onchange?: (event: Event) => void; oninput?: (event: Event) => void; } declare const Radio: import("svelte").Component; type Radio = ReturnType; export default Radio;