export interface TargetedClass { new (): T; } export interface ConvertJSON { /** * @returns an instance of the targeted class type */ toClass: (using: TargetedClass) => T; } /** * Base class for converting JSON string to custom type * * @param {string} str - The JSON source */ export declare const ConvertJSON: (str: string) => ConvertJSON; //# sourceMappingURL=json.d.ts.map