export interface Serializer { serialize(model: T, additionalInfo?: any): Object | null; deserialize(json: Object, additionalInfo?: any): T | null; }