export declare class MapViewResponse { private code; private message; private reason; private payload; constructor(code: number, message: string, reason: string, payload: any); getCode(): number; getMessage(): string; getReason(): string; getPayload(): any; }