export type GetAccessTokenInput = { clientId: string; clientSecret: string; code: string; }; export type GetAccessTokenOutput = { 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 a code. * * @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 getAccessToken(input: GetAccessTokenInput): Promise; //# sourceMappingURL=get-access-token.d.ts.map