import { HTMLAttributes, ReactNode, default as React } from 'react'; export interface BreadcrumbPureProps extends HTMLAttributes { /** * A ReactNode that will be rendered as the Divider icon. */ divider?: ReactNode; /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const BreadcrumbPure: React.ForwardRefExoticComponent>; export default BreadcrumbPure; //# sourceMappingURL=BreadcrumbPure.d.ts.map