import { type Adapter, type AdapterPayload } from 'oidc-provider'; export declare class InMemoryAdapter implements Adapter { private type; constructor(type: string); private tokenStorage; private sessionStorage; private grantIdStorage; private key; upsert(id: string, payload: AdapterPayload, expiresIn: number): Promise; findByUserCode(userCode: string): Promise; find(id: string): Promise; findByUid(uid: string): Promise; consume(id: string): Promise; destroy(id: string): Promise; revokeByGrantId(grantId: string): Promise; } //# sourceMappingURL=in-memory-adapter.d.ts.map