import { Components } from '@vime/core'; interface VmControlGroupProps { class?: string; style?: string; /** Determines where to add spacing/margin. The amount of spacing is determined by the CSS variable `--control-group-spacing`. */ space?: Components.VmControlGroup["space"]; } interface VmControlGroupEvents { } interface VmControlGroupSlots { default: any; } import { SvelteComponent } from "svelte/internal"; declare class ControlGroup extends SvelteComponent { $$prop_def: VmControlGroupProps; $$events_def: VmControlGroupEvents; $$slot_def: VmControlGroupSlots; $on(type: K, callback: (e: VmControlGroupEvents[K]) => any): () => void; $set($$props: Partial): void; constructor(options: any); get ref(): any; get getWebComponent(): HTMLVmControlGroupElement | undefined; } export default ControlGroup;