import Context from './Context';
export interface IconType {
    name: string;
    svg: string;
    color: string;
}
export default class Icons {
    private ctx;
    private list;
    icons: Map<string, HTMLImageElement>;
    constructor(ctx: Context);
    init(): Promise<void>;
    private createImageFromSVG;
    get(name: string): HTMLImageElement | undefined;
}
