/** @typedef {typeof __propDef.props} NavbarProps */ /** @typedef {typeof __propDef.events} NavbarEvents */ /** @typedef {typeof __propDef.slots} NavbarSlots */ export default class Navbar extends SvelteComponentTyped<{ [x: string]: any; show?: boolean; }, { [evt: string]: CustomEvent; }, { show: {}; logo: {}; links: {}; others: {}; }> { } export type NavbarProps = typeof __propDef.props; export type NavbarEvents = typeof __propDef.events; export type NavbarSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; show?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { show: {}; logo: {}; links: {}; others: {}; }; }; export {};