/** * Method names registered on the inline `window.vt` stub before `array.js` loads. * * npm / ESM imports (`import { vt } from '@v-tilt/browser'`) do **not** use this * list — `vt` is the real SDK instance. Only the HTML snippet's loader IIFE * needs these names so calls queue in `window.vt._i` until the bundle loads. * * When adding a new public `vt.*` method that integrators may call before * `init()` completes, append it here and update public install docs. */ export declare const VTILT_SNIPPET_STUB_METHOD_NAMES: readonly ["init", "capture", "identify", "setUserProperties", "resetUser", "getUserIdentity", "getDeviceId", "getUserState", "alias", "getConfig", "getSessionId", "updateConfig", "setConsent", "on", "once", "off", "startAutocapture", "stopAutocapture", "startSessionRecording", "stopSessionRecording", "openChat", "closeChat", "toggleChat", "showChat", "hideChat", "sendChatMessage", "gtag", "setGoogleUserData"]; /** Space-separated stub method string for the minified install snippet. */ export declare const VTILT_SNIPPET_STUB_METHODS: string; export type VtiltSnippetStubMethodName = (typeof VTILT_SNIPPET_STUB_METHOD_NAMES)[number];