import React from 'react'; declare type Props = { urls: BreadCrumbsProps[]; }; /** * * @deprecated This will be removed in the future. Use Breadcrumbs instead. */ declare const Breadcrumbs: React.FC; export default Breadcrumbs; export interface BreadCrumbsProps { icon?: string; text?: string | JSX.Element; url?: string; divider?: JSX.Element; }