import type { HTMLInputAttributes } from 'svelte/elements'; export interface Props extends Omit { /** Value for this radio button option. */ value: string; /** Text label displayed next to the radio button. */ label: string; /** Whether the radio button is disabled. */ disabled?: boolean; } declare const Radio: import("svelte").Component; type Radio = ReturnType; export default Radio; //# sourceMappingURL=Radio.svelte.d.ts.map