export declare class FMPClient { private readonly apiKey?; private readonly baseUrl; private readonly client; private static getErrorMessage; constructor(apiKey?: string); private getApiKey; protected get(endpoint: string, params?: Record): Promise; protected getCSV(endpoint: string, params?: Record): Promise; protected post(endpoint: string, data: any, params?: Record): Promise; }