export type GoHighLevelClientConfig = { readonly accessToken: string; readonly baseUrl?: string; }; export type GetInput = { readonly version: string; readonly path: string; readonly altId?: string; readonly altType?: string; readonly locationId?: string; }; export type PostInput = { readonly version: string; readonly path: string; readonly locationId?: string; readonly body: object; }; export interface GoHighLevelClient { readonly baseUrl: string; readonly get: (input: GetInput) => Promise; readonly post: (input: PostInput) => Promise; } export declare function createGoHighLevelClient(config: GoHighLevelClientConfig): GoHighLevelClient; //# sourceMappingURL=client.d.ts.map