/** * Check whether a JWT token has expired based on its `exp` claim. * * WARNING: This performs NO signature verification. It must NOT be used * for authentication or authorization decisions. */ export declare function isTokenExpired(token: string): boolean;