export type { RadioOption } from './createRadioGroup.svelte'; import { type SvEditorProps } from './editor-contract'; import { type RadioOption } from './createRadioGroup.svelte'; type Props = SvEditorProps & { options: ReadonlyArray; value?: string | number | null; onChange?: (value: string | number) => void; orientation?: 'vertical' | 'horizontal'; }; declare const SvRadioGroup: import("svelte").Component; type SvRadioGroup = ReturnType; export default SvRadioGroup;