import React from "react"; interface CompactCookieNoticeProps extends React.HTMLAttributes { position?: "bottom" | "top" | "bottom-left" | "bottom-right" | "top-left" | "top-right"; glassIntensity?: number; message?: string; acceptText?: string; declineText?: string; moreInfoText?: string; privacyPolicyUrl?: string; onAccept?: () => void; onDecline?: () => void; onMoreInfo?: () => void; theme?: unknown; animate?: boolean; forceVisible?: boolean; } /** * A compact cookie consent notice that takes minimal screen space */ export declare const CompactCookieNotice: React.ForwardRefExoticComponent>; export declare const GlassCompactCookieNotice: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=CompactCookieNotice.d.ts.map