import { InitSDKOptions, LogEventOptions } from "./index"; declare const initSdk: (args: InitSDKOptions) => Promise; declare const startSdk: () => void; declare const logEvent: (args: LogEventOptions) => Promise; declare const getAppsFlyerUID: () => string; declare const setCustomerUserId: (userId: string) => Promise; declare const enableTCFDataCollection: (shouldCollect: boolean) => Promise; declare const setConsentData: (consent: any) => Promise; declare const setAppInviteOneLink: (link: string) => Promise; declare const generateInviteUrl: (args: AppsFlyerLinkGeneratorArgs) => Promise; declare const stop: (isStopped: bool) => Promise; declare const setSharingFilter: (partners: Array) => Promise; declare const setSharingFilterForAllPartners: () => Promise; declare const _toHashMap: (obj: Object) => javautilHashMap; declare const _toValue: (val: any) => any; export { initSdk, startSdk, logEvent, stop, setCustomerUserId, setAppInviteOneLink, generateInviteUrl, getAppsFlyerUID, enableTCFDataCollection, setConsentData, setSharingFilter, setSharingFilterForAllPartners, _toHashMap, _toValue, };