export interface IconModel {
    nome: string;
    categoria: string;
    svg?: string;
    tags?: string[];
}
export declare class IconsList {
    constructor(size: string | number, fill?: boolean);
    updateList(size: number, fill?: boolean): void;
    list: IconModel[];
    getIcon(name: string): IconModel | undefined;
}
