import React from 'react'; import { ControlLinkProps } from '../../ControlLink'; import './Breadcrumb.scss'; export type BreadcrumbProps = ControlLinkProps & { position?: number; to?: string; href?: string; }; export declare const Breadcrumb: React.FC;