/**
 * Convert object properties to camel case.
 * NOT recursive!
 * e.g.
 * AgentVersion => agentVersion
 * ID => id
 *
 * @param {Record<string, any>} obj
 */
export function objectToCamel(obj: Record<string, any>): Record<string, any>;
//# sourceMappingURL=object-to-camel.d.ts.map