import { Props as LinkBasicProps } from '../link/link'; import React from 'react'; interface Props { href?: string; nextLink?: boolean; onClick?: (event: React.MouseEvent) => void; className?: string; } declare const defaultProps: { nextLink: boolean; className: string; }; type NativeAttrs = Omit, keyof Props>; type NativeLinkAttrs = Omit; export type BreadcrumbsProps = Props & typeof defaultProps & NativeLinkAttrs; declare const _default: React.ComponentType & Omit, "className" | "nextLink">>; export default _default;