/** * Enumerates special file type icons that do not map to any file extensions. * For example, the 'pptx' icon maps to the extensions 'ppt', 'pptm', 'pptx', * but the 'folder' icon does not map to any extensions and should be obtained * via this enum. */ export declare enum FileIconType { docset = 1, folder = 2, genericFile = 3, listItem = 4, sharedFolder = 5, multiple = 6, stream = 7, news = 8, desktopFolder = 9, documentsFolder = 10, picturesFolder = 11, linkedFolder = 12, list = 13 } export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13; //# sourceMappingURL=FileIconType.d.ts.map