export declare const icons: Record<string, any>;
export declare type IconsKeys = keyof typeof icons;
declare class Icon {
    static get(name: keyof typeof icons, fill?: string): string;
}
export default Icon;
