import { Separator } from './separator';
import type { TOC } from "@ember/component/template-only";
import type { WithBoundArgs } from "@glint/template";
export interface Signature {
Element: HTMLElement;
Args: {
/**
* The accessible label for the breadcrumb navigation.
* Defaults to "Breadcrumb"
*/
label?: string;
};
Blocks: {
default: [
{
/**
* A separator component to place between breadcrumb items.
* Typically renders as "/" or ">" and is decorative (aria-hidden="true").
* Pre-configured to render as an `
` element for proper HTML structure.
*/
Separator: WithBoundArgs;
}
];
};
}
/**
* A breadcrumb navigation component that displays the current page's location within a navigational hierarchy.
*
* Breadcrumbs help users understand their current location and provide a way to navigate back through the hierarchy.
*
* For example:
*
* ```gjs live preview
* import { Breadcrumb } from 'ember-primitives';
*
*
*
*
* Home
*
* /
*
* Docs
*
* /
*
* Breadcrumb
*
*
*
* ```
*/
export declare const Breadcrumb: TOC;
export default Breadcrumb;
//# sourceMappingURL=breadcrumb.d.ts.map