import { BoxProps } from "../Box"; import { LinkProps } from "../Link"; export interface BreadcrumbsProps extends BoxProps { currentPageTitle: string; currentPageSubtitle?: string; parentTitle?: string; parentLinkTitle?: string; parentLinkProps?: LinkProps; } export declare const TopBarBreadcrumbs: (props: BreadcrumbsProps) => JSX.Element;