import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { sections?: { label: string; path: string; }[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type BreadcrumbProps = typeof __propDef.props; export type BreadcrumbEvents = typeof __propDef.events; export type BreadcrumbSlots = typeof __propDef.slots; export default class Breadcrumb extends SvelteComponentTyped { } export {};