import type { IdentityOwoxClient } from '../../client/index.js'; import type { AuthFlowRequest } from '../../client/index.js'; export type UserInfoPayload = AuthFlowRequest; /** * Client wrapper for Platform auth flow completion with logging. * Delegates HTTP communication to IdentityOwoxClient. */ export declare class PlatformAuthFlowClient { private readonly identityClient; private readonly logger; constructor(identityClient: IdentityOwoxClient); completeAuthFlow(payload: UserInfoPayload): Promise<{ code: string; }>; } //# sourceMappingURL=platform-auth-flow-client.d.ts.map