import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { IconName } from '../../components/dropdown-menu/pharos-dropdown-menu-item';
export interface PharosDropdownMenuItemProps extends DetailedHTMLProps, HTMLElement> {
/**
* The icon to be used for the item
*/
icon?: IconName | undefined;
/**
* Indicates if the item is currently selected.
*/
selected?: boolean;
/**
* Indicates the target URL of the link. Setting this attribute renders the item as a link.
*/
link?: string;
/**
* Indicates where to display the linked URL.
*/
target?: '_blank' | '_parent' | '_self' | '_top';
/**
* Indicates the relationship of the resource to the current document.
*/
rel?: string | undefined;
/**
* Indicates if the item is disabled.
*/
disabled?: boolean;
/**
* Indicates the menu item is displayed on a dark background.
*/
isOnBackground?: boolean;
}
export declare const PharosDropdownMenuItem: FC;
//# sourceMappingURL=pharos-dropdown-menu-item.d.ts.map