type Breadcrumb = {
    label: string | Element;
    onClick?: () => void;
    href?: string;
};
export type Breadcrumbs2Props = {
    path: Breadcrumb[];
    backTo?: string;
    onBack?: () => void;
};
export declare const Breadcrumbs2: ({ path: _path, backTo, onBack }: Breadcrumbs2Props) => import("react/jsx-runtime").JSX.Element;
export {};
