/** * PrivacyPreferenceCenter - Detailed preference management modal * Follows Grain Design System specifications */ import * as React from 'react'; export interface PrivacyPreferenceCenterProps { isOpen: boolean; onClose: () => void; onSave?: (categories: string[]) => void; } export declare function PrivacyPreferenceCenter({ isOpen, onClose, onSave, }: PrivacyPreferenceCenterProps): React.JSX.Element; //# sourceMappingURL=PrivacyPreferenceCenter.d.ts.map