import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { elementsToHighlight: Set; color: 'gray' | 'blue'; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type HighlightBoundsProps = typeof __propDef.props; export type HighlightBoundsEvents = typeof __propDef.events; export type HighlightBoundsSlots = typeof __propDef.slots; export default class HighlightBounds extends SvelteComponentTyped { } export {};