export declare const BREADCRUMBLINK_CLASSNAME = "";
declare const states: ("focus" | "disabled" | "hover")[];
export type KendoBreadcrumbLinkProps = {
    root?: boolean;
    icon?: boolean;
    icontext?: boolean;
    /** @aria Last item in breadcrumb gets aria-current="page" and aria-disabled="true" */
    last?: boolean;
};
export type KendoBreadcrumbLinkState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const BreadcrumbLink: {
    (props: KendoBreadcrumbLinkProps & KendoBreadcrumbLinkState & React.HTMLAttributes<HTMLElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "disabled" | "hover")[];
};
export {};
