/** * @author songxiwen * @date 2020/10/12 16:25 */ import { Document } from 'mongoose'; import { LocalizationContents } from '../../../type/database'; export declare class Icon extends Document { kitId: string; kitCategoryId: string; iconStyleId: string; name: LocalizationContents; fileKey: string; createdAt: Date; updatedAt: Date; isEnabled: boolean; width?: number; height?: number; size?: number; resourceType: string; svgXML?: string; } export declare const iconSchema: import("mongoose").Schema;