import type { AnchorHTMLAttributes, HTMLAttributes } from "react";
interface BreadcrumbLinkProps extends AnchorHTMLAttributes {
/** Render the consumer's element (e.g. a router ) instead of a native anchor. */
asChild?: boolean;
}
declare const Breadcrumb: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
List: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Link: import("react").ForwardRefExoticComponent>;
Page: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Separator: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
Ellipsis: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
};
export { Breadcrumb };
export type { BreadcrumbLinkProps };