import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; duration?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type NavigationIndicatorProps = typeof __propDef.props; export declare type NavigationIndicatorEvents = typeof __propDef.events; export declare type NavigationIndicatorSlots = typeof __propDef.slots; export default class NavigationIndicator extends SvelteComponentTyped { } export {};