export declare class APIError extends Error {
    code: string;
    details?: any;
    constructor(message: string, code: string, details?: any);
}
export declare function makeRequest<T>(url: string, options: RequestInit | undefined, apiKey: string): Promise<T>;
export declare const DEFAULT_BASE_URL = "https://cms.datplatform.com";
