/** * ConsentBanner - Glassmorphic consent popup for GDPR compliance * Follows Grain Design System specifications */ import * as React from 'react'; export interface ConsentBannerProps { position?: 'top' | 'bottom' | 'center'; theme?: 'light' | 'dark' | 'glass'; customText?: string; onAccept?: () => void; onDecline?: () => void; showPreferences?: boolean; privacyPolicyUrl?: string; } export declare function ConsentBanner({ position, theme, customText, onAccept, onDecline, showPreferences, privacyPolicyUrl, }: ConsentBannerProps): React.JSX.Element; //# sourceMappingURL=ConsentBanner.d.ts.map