/** * CookieNotice - Simple cookie notification banner */ import * as React from 'react'; export interface CookieNoticeProps { message?: string; privacyPolicyUrl?: string; onDismiss?: () => void; position?: 'top' | 'bottom'; } export declare function CookieNotice({ message, privacyPolicyUrl, onDismiss, position, }: CookieNoticeProps): React.JSX.Element; //# sourceMappingURL=CookieNotice.d.ts.map