import { MobileVisitorAuthenticationState } from './models/MobileVisitorAuthenticationState'; import VisitorID from './models/VisitorID'; interface IIdentity { extensionVersion: () => Promise; syncIdentifiers: (identifiers?: Record) => void; syncIdentifiersWithAuthState: (identifiers: Record | null, authenticationState: MobileVisitorAuthenticationState) => void; syncIdentifier: (identifierType: String, identifier: String, authenticationState: MobileVisitorAuthenticationState) => void; appendVisitorInfoForURL: (baseURL?: String) => Promise; getUrlVariables: () => Promise; getIdentifiers: () => Promise>; getExperienceCloudId: () => Promise; } declare const Identity: IIdentity; export default Identity;