import { SvelteComponentTyped } from "svelte"; import type { GroupDef } from '../ddl/groups'; export declare const group: GroupDef; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type InteractiveProps = typeof __propDef.props; export type InteractiveEvents = typeof __propDef.events; export type InteractiveSlots = typeof __propDef.slots; export default class Interactive extends SvelteComponentTyped { } export {};