export default class Serializer { map: Record; path: string; model: Record; constructor(model: Record); /** * This method populates the record's instance with instances of * the ModelProperty object, while setting parsed values to the record's * __data property, which represents the serialized version of the data */ setProperties(rawData: unknown, record: unknown, options: Record): void; /** * OVERRIDE: This hook allows for data manipulation prior to serialization logic */ normalize(data: unknown): unknown; } export declare function getComputedProperties(classInstance: Record): [string, PropertyDescriptor['get']][];