import type { OAuthTokenReqVO, OAuthTokenRespVO } from '../../types/oauth'; import type { OAuthGetAuthorizeCodeReqVO, OAuthGetAuthorizeCodeRespVO, OAuthClientInfoRespVO } from '../../types/oauth-authorize'; export declare function getOAuthToken(data: OAuthTokenReqVO): Promise; export declare function getOAuthClientInfo(clientId: string): Promise; export declare function getOAuthAuthorizeCode(data: OAuthGetAuthorizeCodeReqVO): Promise; export declare function createClientToken(data: { client_hash_id: string; scope?: string[]; origin: string; target_tenant_id?: string; }): Promise<{ access_token: string; token_type: string; expires_in: number; scope: string; }>; //# sourceMappingURL=oauth.d.ts.map