import type { ElementScriptTrigger } from '#nuxt-scripts/types'; type __VLS_Props = { /** * Defines the trigger event to load the script. */ trigger?: ElementScriptTrigger; id: string; runtimeConfig?: { locale: string; }; tokenId?: string; cookieDomain?: string; cookieExpiry?: number; }; type __VLS_Slots = { default?: (props: { ready: boolean; }) => any; awaitingLoad?: () => any; loading?: () => any; error?: () => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, { crisp: import("#nuxt-scripts/types").UseScriptContext; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { error: () => any; ready: (e: import("#nuxt-scripts/types").UseScriptContext) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onError?: (() => any) | undefined; onReady?: ((e: import("#nuxt-scripts/types").UseScriptContext) => any) | undefined; }>, { trigger: ElementScriptTrigger; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };