import type { UseScriptInput } from "@unhead/vue"; import type { ICookiebotOptions } from "@ambitiondev/cookiebot-common"; export type BuildConsentBannerScriptOptions = UseScriptInput & { [key: string]: string | null | undefined; }; type CookiebotConsentBannerDataOptions = Partial>; export declare const buildConsentBannerScriptOptions: (options?: CookiebotConsentBannerDataOptions) => BuildConsentBannerScriptOptions; export {};