import { IRequestDto } from "./IRequestDto"; import { IResponseDto } from "./IResponseDto"; export declare class MdkUtil { static maskJson(obj: any): void; private static parseObject; private static parseArray; static getMaskedValue(key: string, value: string): string; static convertDTOtoJsonObject(dto: IRequestDto): any; static deleteReturn(original: String): string; static setResponseProperties(resultJson: string, type: { new (): T; }): T; }