/** * Decode a JWT's payload (no signature verification). * Returns parsed JSON, or undefined if the token is malformed. * * Used by --log narration to surface token contents — not for security checks. */ export declare function decodeJwtPayload(jwt: string): Record | undefined; //# sourceMappingURL=decode-jwt.d.ts.map