/** * Object key sorting utilities for consistent configuration. */ /** * Sorts object keys alphabetically, case-insensitive. * Returns a new object with sorted keys, preserving the original object and original key case. * * @param obj - Object to sort * @returns New object with sorted keys (case-insensitive sort) */ export declare function sortObjectKeysCaseInsensitive>(obj: T): T; /** * Sorts env and headers objects in a server configuration. * This is a convenience function for server template/instance configurations. * Also normalizes URL fields by removing trailing slashes. * * @param config - Server configuration object with optional env and headers * @returns New object with sorted env and headers keys and normalized URLs */ export declare function sortServerConfigEnvHeaders; headers?: Record; }>(config: T): T; //# sourceMappingURL=sort-utils.d.ts.map