import { FunctionComponent, HTMLProps, ReactNode } from 'react'; export interface BreadcrumbProps extends HTMLProps { children?: ReactNode; className?: string; 'aria-label'?: string; } declare const Breadcrumb: FunctionComponent; export default Breadcrumb;