interface RadioProps { checked?: boolean; disabled?: boolean; label?: string; helperText?: string; id?: string; name?: string; value: string; size?: 'sm' | 'md' | 'lg'; class?: string; onchange?: (value: string) => void; } declare const Radio: import("svelte").Component; type Radio = ReturnType; export default Radio;