import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export type BreadcrumbsProps = HTMLAttributes & TestableProps & {
ref?: Ref;
/** Additional CSS classes */
className?: string;
/** Child breadcrumb items and separators */
children?: ReactNode;
};
export declare const Breadcrumbs: FC;