import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { LinkTarget } from '../../components/breadcrumb/pharos-breadcrumb-item';
export interface PharosBreadcrumbItemProps extends DetailedHTMLProps, HTMLElement> {
/**
* Indicates to save the linked URL instead of navigating to it.
*/
download?: string | undefined;
/**
* Indicates the URL that the hyperlink points to.
*/
href?: string | undefined;
/**
* Indicates the language of the linked URL.
*/
hreflang?: string | undefined;
/**
* Indicates the URLs to ping.
*/
ping?: string | undefined;
/**
* Indicates the type of link.
*/
rel?: string | undefined;
/**
* Indicates where to display the linked URL.
*/
target?: LinkTarget | undefined;
}
export declare const PharosBreadcrumbItem: FC;
//# sourceMappingURL=pharos-breadcrumb-item.d.ts.map