import { type BgVariant } from '../../utils/bg.js'; export interface BannerCookieProps { message?: string; acceptText?: string; declineText?: string; position?: 'bottom' | 'top'; bg?: BgVariant; className?: string; onAccept?: () => void; onDecline?: () => void; } export declare function BannerCookie({ message, acceptText, declineText, position, bg, className, onAccept, onDecline, }: BannerCookieProps): import("react/jsx-runtime").JSX.Element | null;