import type { ButtonHTMLAttributes, FC, Ref } from 'react';
export type BreadcrumbsEllipsisProps = ButtonHTMLAttributes & {
ref?: Ref;
/** Additional CSS classes */
className?: string;
};
/**
* Ellipsis component for truncated breadcrumbs.
*
* Used to indicate that there are hidden breadcrumb levels between
* the visible ones. Can be clickable to reveal the hidden items.
*
* @example
* ```tsx
*
* ```
*/
export declare const BreadcrumbsEllipsis: FC;