export type RefreshAccessTokenInput = { clientId: string; clientSecret: string; refreshToken: string; }; export type RefreshAccessTokenOutput = { access_token: string; token_type: string; expires_in: number; refresh_token: string; scope: string; userType: string; companyId: string; locationId: string; userId: string; }; /** * Returns an access token given refresh token. * * @see https://marketplace.gohighlevel.com/docs/ghl/oauth/get-access-token * @see https://github.com/GoHighLevel/highlevel-api-sdk/blob/main/lib/code/oauth/models/oauth.ts * * @param input */ export declare function refreshAccessToken(input: RefreshAccessTokenInput): Promise; //# sourceMappingURL=refresh-access-token.d.ts.map