export interface IPointVM { city: string; address: string; type: string; } export declare class PointVM implements IPointVM { city: string; address: string; type: string; }