import { HTMLAttributes } from 'react';
import { Booleanish } from '../../shared-types';
interface IPktIcon extends HTMLAttributes<HTMLElement> {
    name?: string;
    path?: string;
    ariaHidden?: Booleanish;
    ariaLabel?: string;
}
export declare const PktIcon: import('react').ForwardRefExoticComponent<IPktIcon & import('react').RefAttributes<HTMLSpanElement>>;
export {};
