export interface AccessTokenResponse { grant_type: 'client_credentials'; access_token: string; expires_in: number; } export declare const getAccessToken: (clientId: string, clientSecret: string) => Promise;