import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { LinkProps } from '../../Link';
export type BreadcrumbLinkProps = LinkProps & {
    isActive?: boolean;
    id: string;
    onClick?: (arg1: React.SyntheticEvent<HTMLElement>, id: string) => unknown;
};
export declare const BreadcrumbLink: Flow.AbstractComponent<BreadcrumbLinkProps, HTMLAnchorElement | null | undefined>;
//# sourceMappingURL=BreadcrumbLink.d.ts.map