export type { BreadcrumbItem } from './ui-app.types'; /** * SvBreadcrumb - a navigation trail. Each item is a link (`href`), a button * (`onClick`), or plain text; the last item is the current page and is never * interactive. Long trails collapse the middle to an expandable ellipsis. * Parity: Smart breadcrumb. * * ```svelte * * ``` */ import type { BreadcrumbItem } from './ui-app.types'; type Props = { items: ReadonlyArray; /** Separator between crumbs. Default a chevron. */ separator?: string; /** Collapse the middle when there are more than this many crumbs. */ maxItems?: number; ariaLabel?: string; }; declare const SvBreadcrumb: import("svelte").Component; type SvBreadcrumb = ReturnType; export default SvBreadcrumb;