import { RootProps } from './breadcrumbs-root'; import { ListProps } from './breadcrumbs-list'; import { ItemProps } from './breadcrumbs-item'; import { LinkProps } from './breadcrumbs-link'; import { PageProps } from './breadcrumbs-page'; import { SeparatorProps } from './breadcrumbs-separator'; export declare const Breadcrumbs: import('react').ForwardRefExoticComponent, HTMLElement>, "ref"> & { negative?: boolean; } & import('react').RefAttributes> & { List: import('react').ForwardRefExoticComponent, HTMLOListElement>, "ref"> & import('react').RefAttributes>; Item: import('react').ForwardRefExoticComponent, HTMLLIElement>, "ref"> & import('react').RefAttributes>; Link: import('react').ForwardRefExoticComponent, HTMLAnchorElement>, "ref"> & { asChild?: boolean; disableVisited?: boolean; ensureTargetArea?: boolean; silent?: boolean; variant: "text" | "standalone" | "navigation" | "text-negative" | "standalone-negative" | "navigation-negative"; } & import('react').RefAttributes, "ref">, "variant"> & { home?: boolean; } & import('react').RefAttributes>; Page: import('react').ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & import('react').RefAttributes>; Separator: import('react').ForwardRefExoticComponent, HTMLLIElement>, "ref"> & import('react').RefAttributes>; }; export type BreadcrumbsProps = { Root: RootProps; List: ListProps; Item: ItemProps; Link: LinkProps; Page: PageProps; Separator: SeparatorProps; };