import React from 'react'; import PropTypes from 'prop-types'; import { StandardProps } from '../../util/component-types'; export interface IBreadcrumbItemProps extends StandardProps { } export interface IBreadcrumbProps extends StandardProps, React.DetailedHTMLProps, HTMLDivElement> { Item?: string | (React.ReactNode & { props: IBreadcrumbItemProps; }); } export declare const Breadcrumb: { (props: IBreadcrumbProps): React.ReactElement; displayName: string; peek: { description: string; categories: string[]; }; propTypes: { /** All children should be \`Breadcrumb.Item\`s. Others are ignored. */ children: PropTypes.Requireable; /** Appended to the component-specific class names set on the root element. Value is run through the \`classnames\` library. */ className: PropTypes.Requireable; /** A child element that renders a \`li\`. */ Item: PropTypes.Requireable; }; Item: { (_props: IBreadcrumbItemProps): null; displayName: string; peek: { description: string; }; propName: string; propTypes: { children: PropTypes.Requireable; }; }; }; export default Breadcrumb; //# sourceMappingURL=Breadcrumb.d.ts.map