export declare class FetchWrapper {
    private baseUrl;
    private apiKey;
    private clientKey?;
    constructor(baseUrl: string, apiKey: string, clientKey?: string);
    private request;
    get<T>(endpoint: string, params?: Record<string, any>): Promise<T>;
}
