/**
 * Rate limiting function
 * @returns {boolean} True if log is allowed, false if rate limit exceeded
 */
export declare function checkRateLimit(): boolean;
export declare function resetRateLimit(now?: number): void;
