import type { HttpTransport } from './device-flow.js'; import type { TargetSessionEndpoints } from './discovery.js'; interface SessionVerificationDeps { readonly http: HttpTransport; readonly discoveryEndpoints: TargetSessionEndpoints; } export declare function readVerifiedOrganization(accessToken: string, signal: AbortSignal | undefined, deps: SessionVerificationDeps): Promise<{ readonly id: string; }>; export {};