declare const defaultOptions: { apiKey: string; env: "dev"; version: string; shouldLog: boolean; appName: string; }; declare const error: { API_KEY: string; VERSION: string; }; declare const mockedReturns: { INSTALLATION_ID: string; GUID: string; SESSION_ID: string; }; declare const networkCallType: { EVENT: string; SESSION_STARTED: string; }; declare const requestMsg: { ERROR: string; TIMEOUT: string; }; declare const trackingEndpoint = "https://api.avo.app/inspector/v1/track"; declare const sessionTimeMs: number; declare const type: { STRING: string; STRINGLIST: string; INT: string; INTLIST: string; OBJECT: string; OBJECTLIST: string; FLOAT: string; FLOATLIST: string; BOOL: string; BOOLLIST: string; NULL: string; UNKNOWN: string; UNKNOWNLIST: string; }; export { defaultOptions, error, mockedReturns, networkCallType, requestMsg, sessionTimeMs, type, trackingEndpoint, };