/** * Token Revocation Security Detection Patterns * Detects JWT usage without revocation mechanisms and excessive token expiration */ export interface RevocationPattern { id: string; name: string; description: string; severity: 'high' | 'medium'; hipaaReference: string; patterns: RegExp[]; negativePatterns?: RegExp[]; recommendation: string; category: string; } /** * REVOKE-001: JWT Without Server-Side Revocation Mechanism * Detects JWT usage without revocation support */ export declare const JWT_WITHOUT_REVOCATION: RevocationPattern; /** * REVOKE-002: Excessive Token Expiration Time * Detects tokens with expirations longer than recommended */ export declare const EXCESSIVE_TOKEN_EXPIRATION: RevocationPattern; export declare const ALL_REVOCATION_PATTERNS: RevocationPattern[]; //# sourceMappingURL=patterns.d.ts.map