import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { IconName } from '../../components/icon/pharos-icon';
export interface PharosIconProps extends DetailedHTMLProps, HTMLElement> {
/**
* The name of the icon
*/
name?: IconName | undefined;
/**
* Indicates the title to apply as the accessible name of the icon.
*/
a11yTitle?: string | undefined;
/**
* Indicates whether the icon should be hidden from assistive technology.
*/
a11yHidden?: AriaHiddenState;
}
export declare const PharosIcon: FC;
//# sourceMappingURL=pharos-icon.d.ts.map