import { GdsElement } from '../../../gds-element'; /** * @element gds-breadcrumb * @summary The `gds-breadcrumb` component represents a single item within a breadcrumb navigation. * It can be rendered as a link, current page indicator, or overflow menu depending on its properties. * * @slot - Default slot for the breadcrumb content * @slot lead - Optional slot for leading content (usually icons) * @slot trail - Optional slot for trailing content */ export declare class GdsBreadcrumb extends GdsElement { #private; static styles: import("lit").CSSResult[]; /** * The URL that the breadcrumb item points to. */ href: string; /** * Where to display the linked breadcrumb URL. Only used when href is present. */ target?: '_self' | '_blank' | '_parent' | '_top'; /** * The relationship of the linked breadcrumb URL. Defaults to "noreferrer noopener" when target is "_blank". */ rel?: string; /** * Accessible label for the breadcrumb item. Use when visual text needs a different description. */ label: string; /** * When true, the breadcrumb item will render as an overflow menu instead of a regular link. */ overflow: boolean; render(): any; }