import { type HttpTransport } from './device-flow.js'; import type { TargetSessionEndpoints } from './discovery.js'; interface RevocationDeps { readonly http: HttpTransport; readonly discoveryEndpoints: TargetSessionEndpoints; } export declare function revokeRefreshToken(token: string, deps: RevocationDeps): Promise; export {};