import { ComponentProps, ReactNode } from 'react'; export type BreadcrumbItem = { href?: string; label: ReactNode; }; export type BreadcrumbsProps = Omit, "children"> & { items: readonly BreadcrumbItem[]; separator?: ReactNode; }; export declare function Breadcrumbs({ "aria-label": ariaLabel, className, items, separator, ...props }: BreadcrumbsProps): import("react").JSX.Element | null;