import ApiClient from './ApiClient'; import * as O from './types/OAuthCredentials'; export declare const mapOAuthCredentialsResponse: (res: O.OAuthCredentialsResponse) => O.OAuthCredentials; export default class OAuthCredentialsClient { getOAuthCredentials(this: ApiClient, applicationId: string): Promise; createOAuthCredential(this: ApiClient, applicationId: string, params: O.CreateOAuthCredentialParams): Promise; deleteOAuthCredential(this: ApiClient, applicationId: string, propName: string): Promise; }