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