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 IndicatorProps = typeof __propDef.props; export type IndicatorEvents = typeof __propDef.events; export type IndicatorSlots = typeof __propDef.slots; export default class Indicator extends SvelteComponentTyped { } export {};