import { ApiResponse, EmbeddableApiConfig } from '../types'; /** * Creates an API client with the given configuration * @param config - The configuration for the API client * @returns API client with common methods */ export declare function createApiClient(config: EmbeddableApiConfig): { get: (endpoint: string) => Promise>; post: (endpoint: string, body?: any) => Promise>; put: (endpoint: string, body?: any) => Promise>; delete: (endpoint: string) => Promise>; }; //# sourceMappingURL=apiClient.d.ts.map