import { OAuthParams } from './oauth-params.interface'; import { OAuthTokenResponse } from './payload'; import { OAuthGrantType, PasswordGrant } from './oauth-grant-type.interface'; export declare const DEFAULT_SCOPE = "trapi"; export declare const oAuthConverter: { getGrantPayload: (oAuthGrantType: OAuthGrantType, appKey: string) => string; getRefreshGrantPayload: (oAuthGrantType: PasswordGrant, appKey: string, refreshToken: string) => string; parseTokenResponse: (loginResponse: OAuthTokenResponse) => OAuthParams; };