import type { ChordAnalyticsOptions, ChordAnalyticsQueue, ConsentConfiguration } from '../types/index.js';
export interface CdpSnippetResult {
    initialConsent: ConsentConfiguration | null;
}
export declare const addCdpSnippet: (options: ChordAnalyticsOptions) => Promise<CdpSnippetResult>;
export declare const cdpQueue: (namespace: string) => ChordAnalyticsQueue;
