import React from 'react';
import { Crumb } from './types';
export declare const withBreadcrumb: <PropsType extends {} = any>(crumb: Crumb | ((props: PropsType) => Crumb)) => (WrappedComponent: React.ComponentType<PropsType>) => (props: PropsType) => JSX.Element;
