import React from 'react';
interface CompactCookieNoticeProps extends React.HTMLAttributes<HTMLDivElement> {
    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?: any;
    animate?: boolean;
}
/**
 * A compact cookie consent notice that takes minimal screen space
 */
export declare const CompactCookieNotice: React.ForwardRefExoticComponent<CompactCookieNoticeProps & React.RefAttributes<HTMLDivElement>>;
export declare const GlassCompactCookieNotice: React.ForwardRefExoticComponent<CompactCookieNoticeProps & React.RefAttributes<HTMLDivElement>>;
export {};
//# sourceMappingURL=CompactCookieNotice.d.ts.map