import * as React from 'react'; import { AnchorProps } from '../Anchor'; export interface BreadcrumbProps extends AnchorProps { /** * The required title of the breadcrumb link. */ title: string; /** * @ignore */ children?: void; } /** * Represents a single Breadcrumb which is a special version of a link. */ export declare const Breadcrumb: React.SFC & { inner: { readonly StyledText: any; readonly StyledLink: any; }; };