import methods from "./functions/index"; import { TrieveFetchClient } from "./fetch-client"; export declare class TrieveSDK { trieve: TrieveFetchClient; datasetId?: string; organizationId?: string; constructor({ apiKey, baseUrl, debug, datasetId, organizationId, omitCredentials, }: { apiKey: string; baseUrl?: string; debug?: boolean; datasetId?: string; organizationId?: string; omitCredentials?: boolean; }); } type Methods = typeof methods; declare module "./sdk" { interface TrieveSDK extends Methods { } } export {}; //# sourceMappingURL=sdk.d.ts.map