import { ReactNode } from "react"; import { To } from "react-router-dom"; export declare type BreadcrumbItemType = { path?: To; title: string; }; export interface BreadcrumbBaseType { list: BreadcrumbItemType[]; /** * @zh 指定分割符 * @en Custom separator * @defaultValue */ separator?: string | ReactNode; } export declare type BreadcrumbPropsType = BreadcrumbBaseType & JSX.IntrinsicElements['div'];