import { InitSDKOptions, LogEventOptions } from "./index"; declare const startSdk: () => void; declare const initSdk: (args: InitSDKOptions) => Promise; declare const logEvent: (args: LogEventOptions) => Promise; declare const getAppsFlyerUID: () => string; declare const enableTCFDataCollection: (shouldCollect: bool) => Promise; declare const stop: (isStopped: bool) => Promise; declare const setCustomerUserId: (userId: string) => Promise; declare const setAppInviteOneLink: (link: string) => Promise; declare const setConsentData: (consent: any) => Promise; declare const generateInviteUrl: (args: AppsFlyerLinkGeneratorArgs) => Promise; export { initSdk, startSdk, logEvent, stop, setCustomerUserId, setAppInviteOneLink, generateInviteUrl, getAppsFlyerUID, enableTCFDataCollection, setConsentData, };