/** * Trim utility function that only trims strings, passes through other types * @param value - The value to trim (string, null, undefined, or any other type) * @returns The trimmed string if input is string, otherwise returns the value as-is */ export declare function trim(value: T): T; //# sourceMappingURL=utils.d.ts.map