export declare type IndexedObject = Object & { [key: string]: any; }; export interface AbstractType extends Function { prototype: T; } export declare type Constructor = new (...args: Array) => T; export declare type Serializable = Constructor | AbstractType; //# sourceMappingURL=types.d.ts.map