//#region src/client.d.ts type ExaClient = { search: (body: Record) => Promise; contents: (body: Record) => Promise; answer: (body: Record) => Promise; context: (body: Record) => Promise; }; type CreateExaClientOptions = { /** Sent as x-api-key. Omit when using custom headers (e.g. platform proxy). */apiKey?: string; /** Defaults to https://api.exa.ai */ baseUrl?: string; headers?: Record; }; declare function createExaClient(options: CreateExaClientOptions | string): ExaClient; //#endregion export { CreateExaClientOptions, ExaClient, createExaClient }; //# sourceMappingURL=client.d.mts.map