/** * MUI Breadcrumb Component * * Navigation breadcrumbs for showing page hierarchy. * * @example * ```html * * Home * Content * Editor * * ``` */ import { MiuraElement } from '@miurajs/miura-element'; export default class MuiBreadcrumb extends MiuraElement { /** * Custom separator character */ separator: string; /** * Maximum items to show before collapsing */ maxItems: number; /** * Where to collapse items */ collapse: 'start' | 'middle' | 'end'; /** * Size variant */ size: 'sm' | 'md'; private _expanded; static styles: import("@miurajs/miura-render").CSSResult; template(): import("@miurajs/miura-render").TemplateResult; } export declare class MuiBreadcrumbItem extends MiuraElement { /** * Navigation href */ href: string; /** * Mark as current/active page */ active: boolean; /** * Icon name */ icon: string; static styles: import("@miurajs/miura-render").CSSResult; template(): import("@miurajs/miura-render").TemplateResult; } //# sourceMappingURL=breadcrumb.d.ts.map