import { FactoryBase } from '../../interfaces'; import { PropertyTranslationResponse } from '../interfaces/property-translation.response'; import { PropertyTranslation } from '../models/property-translation.model'; export declare class PropertyTranslationFactory implements FactoryBase { static loadFromResponse(response: PropertyTranslationResponse[]): PropertyTranslation[]; loadFromResponse(response: PropertyTranslationResponse[]): PropertyTranslation[]; }