import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { BreadcrumbItemTheme } from './BreadcrumbItem'; export interface BreadcrumbTheme { root: BreadcrumbRootTheme; item: BreadcrumbItemTheme; } export interface BreadcrumbRootTheme { base: string; list: string; } export interface BreadcrumbComponentProps extends ComponentProps<"nav"> { theme?: DeepPartial; } /** * * @name Breadcrumb * @description The Breadcrumb component is used to display the current location within a hierarchy of content and provide a way to navigate back to the root of the hierarchy. * @returns React.FC */ export declare const Breadcrumb: FC; //# sourceMappingURL=Breadcrumb.d.ts.map