import { InitOptions, UI_LAYER } from '@usercentrics/cmp-browser-sdk'; import { ContainerProps } from './Container'; import { AbTestValue, Appearance } from './contexts/UsercentricsContext/types'; export interface UsercentricsProps extends ContainerProps { appRootElementId: string; disabled?: boolean; settingsId: string; options?: InitOptions & { appearance?: Appearance; showCloseAndAcceptAllButton?: boolean; }; abTestValue?: AbTestValue; consentEventName?: string; activeLayer?: UI_LAYER; loadingUI?: () => JSX.Element; } export declare const Usercentrics: ({ appRootElementId, disabled, settingsId, options, abTestValue, consentEventName, activeLayer, loadingUI, ...rest }: UsercentricsProps) => JSX.Element;