/** * Cryptographic utility functions for auth. * * @module */ /** * Constant-time string comparison to prevent timing attacks. * * Used for comparing service keys, tokens, and other secrets where * timing side-channels could leak information about the expected value. * * @param a - First string to compare. * @param b - Second string to compare. * @returns `true` if the strings are identical, `false` otherwise. */ export declare function safeCompare(a: string, b: string): boolean;