import * as React from 'react';
import { CallbackAction, LinkAction } from '../../types';
export interface Props {
    /** Collection of breadcrumbs */
    breadcrumbs: Array<CallbackAction | LinkAction>;
}
export default class Breadcrumbs extends React.PureComponent<Props, never> {
    render(): JSX.Element | null;
}
