import { Components, JSX } from '@vime/core'; interface VmMenuRadioGroupProps { class?: string; style?: string; /** The current value selected for this group. */ value?: Components.VmMenuRadioGroup["value"]; } interface VmMenuRadioGroupEvents { /** Emitted when a new radio button is selected for this group. */ vmCheck: Parameters[0]; } interface VmMenuRadioGroupSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class MenuRadioGroup extends SvelteComponent { $$prop_def: VmMenuRadioGroupProps; $$events_def: VmMenuRadioGroupEvents; $$slot_def: VmMenuRadioGroupSlots; $on(type: K, callback: (e: VmMenuRadioGroupEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmMenuRadioGroupElement | undefined; } export default MenuRadioGroup;