import { CacheService } from '../../../services/cache/cache.service'; export type AuthorizeIntent = { credentialId: string; resolverId: string; identity: string; userId?: string; metadata?: Record; }; export declare class AuthorizeIntentService { private readonly cacheService; constructor(cacheService: CacheService); create(intent: AuthorizeIntent): Promise; get(token: string): Promise; private cacheKey; }