import type { BreadcrumbItem, NavItem } from './types.js'; interface Props { /** Explicit crumbs. When provided, `nav` and `pathname` are ignored. */ items?: BreadcrumbItem[]; /** Nav tree to derive labels from in auto mode. */ nav?: NavItem[]; /** Pathname to walk in auto mode. */ pathname?: string; /** Optional leading crumb (e.g. site name). Auto mode only. */ rootCrumb?: BreadcrumbItem; /** Capitalize fallback labels for unknown segments. Default: true. */ capitalize?: boolean; /** Skip pathname segments through this path (e.g. `'sites/foo'`). */ startAfter?: string; /** Accessible label for the breadcrumb nav. */ 'aria-label'?: string; } declare const Breadcrumbs: import("svelte").Component; type Breadcrumbs = ReturnType; export default Breadcrumbs; //# sourceMappingURL=Breadcrumbs.svelte.d.ts.map