import { SystemProps } from "../../../lib"; export interface BreadcrumbProps extends SystemProps { links: Array<{ title: string; href: string; }>; } export declare const Breadcrumb: ({ links, ...props }: BreadcrumbProps) => JSX.Element;