/** * Radio component - Single choice from a set of options. * Must be used within a RadioGroup. * * @example * ```svelte * * Option 1 * Option 2 * * ``` */ interface Props { /** * The value of this radio option */ value: string; /** * Whether the radio is disabled */ disabled?: boolean; /** * Optional class name */ class?: string; /** * Label content */ children?: import('svelte').Snippet; /** * All other input attributes */ [key: string]: any; } declare const Radio: import("svelte").Component; type Radio = ReturnType; export default Radio; //# sourceMappingURL=Radio.svelte.d.ts.map