import * as React from 'react'; import type { IconType } from '../../components/Icon'; type BreadcrumbItemType = { label: string; href?: string; active?: boolean; }; export declare const Breadcrumbs: ({ items, separator, }: { items: BreadcrumbItemType[]; separator?: IconType; }) => React.JSX.Element; export {};