export declare type IconName = string; export interface GlyphTransformOptions { trim: boolean | number; } export declare type IconOption = { transform?: GlyphTransformOptions; }; export interface IconObject { name: IconName; options?: IconOption; } export declare type SubsetItem = IconName | IconObject;