/// export interface Route { id?: string; label: React.ReactNode; url: string; children?: Route[]; [key: string]: any; } export declare type Routes = Route[]; export interface BreadcrumbsProps { Link?: any; islinkListLoading?: boolean; onLinkClick?: (url: string) => void; onDropDownClick?: (args: { id: string; url: string; }) => void; routes: Routes; showLastBreadcrumb?: boolean; space?: number | "small" | "middle" | "large"; }