interface CdApi {
    setCustomerSessionId: (sessionId: string) => void;
    changeContext: (contextString: string) => void;
    setCustomerBrand: (brand: string) => void;
}
interface BcClient {
    start: (wupUrl: string, cid: string, csid: string, clientConfig: any) => void;
    changeContext: (contextString: string) => void;
    setCustomerBrand: (brand: string) => void;
}
declare global {
    interface Window {
        cdApi: CdApi;
        bcClient: BcClient;
    }
}
export {};
