/// <reference types="react" />
export interface BreadcrumbsProps extends React.HTMLAttributes<HTMLElement> {
    passProps?: object;
    /** Support @testing-library/react `screen.getByTestId` */
    'data-testid'?: string;
    homeRoute?: string;
    noShowRoutes?: string[];
    paramRoutes?: {
        [key: string]: string;
    };
}
