/** * Decodes a JWT token and returns the claims area. * If no value is found or an error occurs while decoding (due to an invalid jwt), it returns undefined. */ export declare function decodeToken(token: unknown, claimsPath?: string): Record | undefined; export declare function decodeJwt(token: unknown): Record | undefined; export declare function tokenIsExpired(token: Record): boolean;