export declare const publicGet: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const publicPost: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privateGet: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privateDelete: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const privatePost: <T>(path: string, queryParams?: Record<string, any> | undefined, bodyParams?: Record<string, any> | undefined) => Promise<T>;
export declare const basicGet: <T>(path: string) => Promise<T>;
