import { PropertyTranslationResponse } from '../interfaces/property-translation.response'; /** * This model represents one translatable property's values. */ export declare class PropertyTranslation { locale: string; value: string; constructor(response?: PropertyTranslationResponse); }