import React from 'react';
import { IBreadcrumbsControlled } from './types/breadcrumbs';
/**
 * @description
 * Breadcrumbs component is a component that shows a breadcrumbs with a message.
 * to show list of links.
 * @param {React.PropsWithChildren<IBreadcrumbsControlled<V>>} props
 * @returns {JSX.Element}
 * @example
 * <BreadcrumbsControlled />
 * <BreadcrumbsControlled variant="primary" />
 */
declare const BreadcrumbsControlled: <V extends string | unknown>(props: React.PropsWithChildren<IBreadcrumbsControlled<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => JSX.Element;
export { BreadcrumbsControlled };
export { BreadcrumbsControlled as Breadcrumbs };
