/** Decode JWT payload (no signature verification — client-side expiry checks only). */ export declare function decodeJwtPayload(token: string): Record | null; /** JWT `exp` claim in milliseconds since epoch, or null if missing / not a JWT. */ export declare function getJwtExpiryMs(token: string): number | null; export declare function isJwtExpired(token: string, skewMs?: number): boolean; export declare function isJwtExpiringWithin(token: string, withinMs: number): boolean; //# sourceMappingURL=jwt.d.ts.map