import { type VariantProps } from 'class-variance-authority'; import { ComponentProps } from 'react'; declare const breadcrumbVariants: (props?: ({ size?: "small" | "medium" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; /** * Breadcrumb root: renders a nav with an ordered list of items and separators. */ export interface BreadcrumbProps extends VariantProps, ComponentProps<'nav'> { } export declare const BreadcrumbRoot: { ({ className, children, ref, size, "aria-label": ariaLabel, ...props }: BreadcrumbProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=breadcrumb-root.d.ts.map