import React, { type ReactElement } from "react"; import { type BreadcrumbsBarType } from "./Breadcrumbs.types"; import { type BreadcrumbItemProps } from "./BreadcrumbItem/BreadcrumbItem"; import { type VibeComponentProps } from "../../types"; import { type BreadcrumbMenuProps } from "./BreadcrumbMenu/BreadcrumbMenu"; export interface BreadcrumbBarProps extends VibeComponentProps { /** * The type of the breadcrumb bar, determining if it is navigational or for indication only. */ type: BreadcrumbsBarType; /** * The breadcrumb items displayed in the bar. */ children: ReactElement | ReactElement[]; } declare const BreadcrumbsBar: ({ className, children, type, id, "data-testid": dataTestId }: BreadcrumbBarProps) => React.JSX.Element; export default BreadcrumbsBar;