/** * Created by Ivo Meißner on 02.09.17. */ /** * Copies the object recursively and sorts all keys of objects and child objects * in alphabetical order * * @param obj * @param recursive */ export declare function sortKeys(obj: { [key: string]: any; }, recursive?: boolean): { [key: string]: any; };