import React from "react"; export type BreadCrumbType = { title: React.ReactNode; href: string; }; export type BreadcrumbListProps = { list: BreadCrumbType[]; withHome?: boolean; }; export declare function BreadCrumbList({ list, withHome }: BreadcrumbListProps): any; export declare function breadCrumb(title: BreadCrumbType["title"], href: BreadCrumbType["href"]): { title: React.ReactNode; href: string; }; //# sourceMappingURL=BreadCrumb.d.ts.map