import { ConvertTemplate } from "./ConvertTemplate"; import { ConvertOptions } from "./ConvertOptions"; /** * * Converter is used to convert data to another data format. * * Supporting following use case: * * convert js object to a class instance * convert a class instance to an object * convert an object to another object * * */ export declare class Converter { private _returnType; private _template; private _silent; private _validate; constructor(options?: ConvertOptions); use(template: ConvertTemplate): this; convert(from: any): any; }