import { InitParameters } from './types'; export default function getSDKInstance(fetch: any, id: string): { fetch: ((input: RequestInfo | URL, init?: RequestInit) => Promise) & typeof globalThis.fetch; apiURL: string; apiKey: string; id: string; init: (data: InitParameters) => void; sendEvent: (data: { event?: string; rating?: number; sessionId?: string; sku?: string; total?: number; userId?: string; isTest?: boolean; propertyNumber1?: number; propertyNumber2?: number; propertyNumber3?: number; lat?: number; lng?: number; propertyString1?: string; source?: string; propertyString2?: string; propertyString3?: string; } & Record, params?: Omit & { tags?: string[]; apiKey?: string; }) => Promise; _validateSendEvent(data: any): void; }; //# sourceMappingURL=core.d.ts.map