export type IconKey = 'okay' | 'bad' | 'info' | 'warn' | 'exclaim' | 'star' | 'ellipsis' | 'point' | 'pointSmall' | 'pin' | 'bullet' | 'heart' | 'shineHeart' | 'help' | 'arrowUp' | 'arrowDown' | 'arrowLeft' | 'arrowRight';
type Icon = {
    [Key in IconKey]: string;
};
export declare const icon: Icon;
export {};
