import React from "react";
import { BreadcrumbProps as BlueprintBreadcrumbItemProps } from "@blueprintjs/core";
export type BreadcrumbItemProps = Omit<BlueprintBreadcrumbItemProps, "icon" | "iconTitle" | "intent" | "target">;
/**
 * Item of the breadcrumbs list.
 * It cannot be used directly but the properties can be used within the elements of the `BreadcrumbList.items` property.
 */
export declare const BreadcrumbItem: ({ className, onClick, href, ...otherBlueprintBreadcrumbProps }: BreadcrumbItemProps) => React.JSX.Element;
export default BreadcrumbItem;
