import { default as React } from 'react';
export interface Crumb {
    title: string;
    view: string;
    indices: number[];
}
export interface BreadcrumbProps {
    /** The callback method that is triggered when a crumb was clicked */
    onClick?: (crumbView: string, indices: number[]) => void;
    /** The crumbs to display */
    crumbs: Crumb[];
}
export declare const Breadcrumb: React.FC<BreadcrumbProps>;
