import { FC } from 'react'; export type CookieBannerProps = { title: string; description: JSX.Element | string; acceptAllLabel: string; saveLabel: string; requiredLabel: string; functionalLabel: string; analyticsLabel: string; marketingLabel: string; }; export declare const CookieBanner: FC;