import * as React from 'react'; import { StandardProps } from '../../common'; export interface BreadcrumbsProps extends StandardProps { /** * The maximum number of elements. By default, set to 5. * @default 5 */ size?: number; /** * The breadcrumb items to display. */ children?: React.ReactNode; } /** * Display a list of Breadcrumb elements with optional grouping. */ export declare const Breadcrumbs: React.SFC & { inner: { readonly BreadcrumbContainer: any; }; };