type Primitive = string | number | boolean | null | undefined; type JSONValue = Primitive | JSONObject | JSONArray; interface JSONObject { [key: string]: JSONValue; } interface JSONArray extends Array { } export default function convertKeysToCamelCaseDeep(input: T): T; export {}; //# sourceMappingURL=convertKeysToCamelCaseDeep.d.ts.map