import type { ChordAnalyticsOptions, ConsentConfiguration } from '../../types/index.js';
export declare const addCdpConsent: (options: ChordAnalyticsOptions) => {
    init: () => Promise<ConsentConfiguration | null>;
    getConsentConfig: () => {
        getCategories: () => Record<string, boolean>;
        isConsentReady: () => boolean;
        debug: boolean;
    };
};
