import { ServiceLoader } from "../interfaces/index.js"; type FacebookPixelFunctionType = (...args: unknown[]) => unknown; type FacebookPixelType = FacebookPixelFunctionType & { push: FacebookPixelFunctionType; callMethod: FacebookPixelFunctionType; loaded: boolean; version: string; queue: Array; }; declare global { interface Window { _fbq?: FacebookPixelType; fbq?: FacebookPixelType; } } export declare const facebookpixel: ServiceLoader; export {};