/** @typedef {typeof __propDef.props} NavbarProps */ /** @typedef {typeof __propDef.events} NavbarEvents */ /** @typedef {typeof __propDef.slots} NavbarSlots */ export default class Navbar extends SvelteComponentTyped<{ class?: string; fill?: boolean; style?: string; tabs?: boolean; pills?: boolean; vertical?: boolean; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } 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: { class?: string; fill?: boolean; style?: string; tabs?: boolean; pills?: boolean; vertical?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};