import type { NotificationLogProvider } from '@atlaskit/notification-log-client'; import type { ForwardRefExoticComponent, RefAttributes } from 'react'; import { type Props, type ValueUpdatedParams, type ValueUpdatingParams, type ValueUpdatingResult } from './NotificationIndicator'; import { type WithAnalyticsEventsProps } from '@atlaskit/analytics-next'; declare const NotificationIndicatorWithAnalytics: ForwardRefExoticComponent, never> & { appearance?: 'added' | 'default' | 'important' | 'primary' | 'primaryInverted' | 'removed' | 'success' | 'neutral' | 'information' | 'inverse' | 'danger' | 'warning' | 'discovery' | 'successBold' | 'informationBold' | 'dangerBold' | 'warningBold' | 'discoveryBold' | undefined; max?: number | undefined; notificationLogProvider?: Promise | undefined; onCountUpdated?: ((param: ValueUpdatedParams) => void) | undefined; onCountUpdating?: ((param: ValueUpdatingParams) => ValueUpdatingResult) | undefined; refreshOnHidden?: boolean | undefined; refreshOnVisibilityChange?: boolean | undefined; refreshRate?: number | undefined; ssrInitialValue?: number | undefined; } & { createAnalyticsEvent?: any; } & RefAttributes>; export { NotificationIndicatorWithAnalytics as NotificationIndicator };