interface CdApi {
    setCustomerSessionId: (sessionId: string) => void;
    changeContext: (contextString: string) => void;
    setCustomerBrand: (brand: string) => void;
}
declare global {
    interface Window {
        cdApi: CdApi;
    }
}
export {};
