import { QueryList, AfterContentInit } from '@angular/core'; import { BreadcrumbItemComponent } from './breadcrumb-item.component'; import { BooleanInput } from '@angular/cdk/coercion'; import * as i0 from "@angular/core"; import * as i1 from "@danske/sapphire-angular"; /** * Show the path to the current page through a hierarchical trail of links. */ export declare class BreadcrumbsComponent implements AfterContentInit { items: QueryList; /** * Defines a string value that labels the current element. */ ariaLabel?: string; /** * Identifies the element (or elements) that labels the current element. */ ariaLabelledby?: string; /** * The size of the breadcrumbs. * @default 'md' */ sizeInput: 'sm' | 'md' | 'lg'; disabled: BooleanInput; ngAfterContentInit(): void; get size(): "sm" | "md" | "lg"; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }