/** @typedef {typeof __propDef.props} NavigationProps */ /** @typedef {typeof __propDef.events} NavigationEvents */ /** @typedef {typeof __propDef.slots} NavigationSlots */ export default class Navigation extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type NavigationProps = typeof __propDef.props; export type NavigationEvents = typeof __propDef.events; export type NavigationSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};