import type { BreadcrumbAPI, BreadcrumbLinkProps, BreadcrumbStates, LabelPropType, LinkProps, Stringified } from '../../schema'; import type { JSX } from '../../stencil-public-runtime'; export declare class KolBreadcrumb implements BreadcrumbAPI { private readonly renderLink; render(): JSX.Element; _label: LabelPropType; _links: Stringified; state: BreadcrumbStates; validateLabel(value?: LabelPropType, _oldValue?: LabelPropType, initial?: boolean): void; validateLinks(value?: Stringified): void; componentWillLoad(): void; disconnectedCallback(): void; }