export declare class CarapisClientError extends Error { status?: number | null; details?: any; constructor(message: string, status?: number | null, details?: any); } export declare class CarapisClient { private apiKey?; private baseUrl; private apiBasePath; private axiosInstance; private _schema; private _endpoints; [key: string]: any; /** * TypeScript client for the Carapis Encar v2 API. * Loads API definitions from schema.yaml. */ constructor(apiKey?: string); private _getPackageVersion; private _getHeaders; private _extractEndpoints; private _request; private _prepareParams; private _createMethods; private _operationIdToMethodName; }