import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { active?: boolean; index: number; }; events: { click: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IndicatorProps = typeof __propDef.props; export declare type IndicatorEvents = typeof __propDef.events; export declare type IndicatorSlots = typeof __propDef.slots; export default class Indicator extends SvelteComponentTyped { } export {};