import { ElementType, ForwardedRef } from 'react';
export type BreadcrumbsProperties = {
    /** @deprecated migrate to native `aria-label` */
    ariaLabel?: string;
    /** @ignore */
    className?: string;
    /** Use Custom Separator */
    customSeparator?: boolean;
    /** Tag of Component */
    tag?: ElementType;
};
/**
 * Supplemental navigation indicating the user's location in a site or app.
 * @docs {@link https://design.visa.com/react/components/breadcrumbs | See Docs}
 * @vgar TODO
 * @wcag TODO
 */
declare const _default: <HTMLElementType = HTMLElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & BreadcrumbsProperties) => import("react").ReactElement;
export default _default;
