import * as React from "react"; import Popup from "./components/CookiesPopup"; declare type Props = { disableAnimation?: React.ComponentProps["disableAnimation"]; type?: "popup" | "banner" | "floating"; showRejectAll?: boolean; }; declare const CookiesPopup: ({ type, disableAnimation, showRejectAll }: Props) => JSX.Element | null; export default CookiesPopup;