import type { ComponentPropsWithRef, ElementType } from 'react'; export type BreadcrumbsProperties = { /** Use Custom Separator */ customSeparator?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Supplemental navigation indicating the user's location in a site or app. * @docs {@link https://design.visa.com/components/breadcrumbs/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Breadcrumbs: { ({ className, customSeparator, tag: Tag, ...remainingProps }: BreadcrumbsProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Breadcrumbs;