/** * Internal dependencies */ import type { BreadcrumbsProps } from './types'; /** * Renders a breadcrumb navigation trail. * * All items except the last one must provide a `to` prop for navigation. * In development mode, an error is thrown when a non-last item is missing `to`. * The last item represents the current page and its `to` prop is optional. * Only the last item (when it has no `to` prop) is rendered as an `h1`. * * @param props * @param props.items The breadcrumb items to display. * * @example * ```jsx * * ``` */ export declare const Breadcrumbs: ({ items }: BreadcrumbsProps) => import("react").JSX.Element | null; export default Breadcrumbs; //# sourceMappingURL=index.d.ts.map