import { FC } from 'react'; import { ApolloClient } from '@apollo/client'; export interface NotificationCenterProps { /** Apollo client for the global gateway */ client: ApolloClient; /** Called when "View All" is clicked */ onViewAll?: () => void; /** Compact mode for small screens */ compact?: boolean; /** Polling interval for unread count in ms (default: 30000) */ pollInterval?: number; /** When true, defer unread-count bootstrap until the panel is opened */ lazy?: boolean; } export declare const NotificationCenter: FC; //# sourceMappingURL=NotificationCenter.d.ts.map