import type { RuntimeState, WindowLike } from "../types.ts"; export declare function createGtagConsentBridge({ windowRef, getState, dataLayerName, }: { windowRef?: WindowLike; getState: () => RuntimeState; dataLayerName?: string; }): { start: () => void; stop: () => void; };