import React, { ReactNode } from 'react'; interface Props { separator?: string | ReactNode; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type BreadcrumbsProps = Props & NativeAttrs; declare const Breadcrumbs: React.ForwardRefExoticComponent>; export default Breadcrumbs;