import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        class?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type HighlightInfoProps = typeof __propDef.props;
export type HighlightInfoEvents = typeof __propDef.events;
export type HighlightInfoSlots = typeof __propDef.slots;
export default class HighlightInfo extends SvelteComponent<HighlightInfoProps, HighlightInfoEvents, HighlightInfoSlots> {
}
export {};
