declare type Page = { name: string; path: string; }; declare type Props = { currentPage: { name: string; }; parentPages: Array; separator: any; onClick?: (page: Page) => void; }; declare function Breadcrumbs(props: Props): JSX.Element; export default Breadcrumbs;