import * as React from "react"; export interface BreadcrumbProps { children?: React.ReactNode | string; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const _default: ({ className, children, "data-cy": dataCy }: BreadcrumbProps) => React.JSX.Element; export default _default;