<!-- API Report Version: 2.3 -->

## API Report File for "@atlaskit/notification-indicator"

> Do not edit this file. This report is auto-generated using
> [API Extractor](https://api-extractor.com/).
> [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)

### Table of contents

- [Main Entry Types](#main-entry-types)
- [Peer Dependencies](#peer-dependencies)

### Main Entry Types

<!--SECTION START: Main Entry Types-->

```ts
/// <reference types="react" />

import { ForwardRefExoticComponent } from 'react';
import { NotificationLogProvider } from '@atlaskit/notification-log-client';
import { RefAttributes } from 'react';
import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';

// @public (undocumented)
export const NotificationIndicator: ForwardRefExoticComponent<
	Pick<Omit<Props, keyof WithAnalyticsEventsProps>, never> &
		Partial<
			Pick<
				Omit<Props, keyof WithAnalyticsEventsProps>,
				| 'appearance'
				| 'max'
				| 'notificationLogProvider'
				| 'onCountUpdated'
				| 'onCountUpdating'
				| 'refreshOnHidden'
				| 'refreshOnVisibilityChange'
				| 'refreshRate'
			>
		> &
		Partial<Pick<Partial<Props>, 'createAnalyticsEvent'>> &
		RefAttributes<any>
>;

// @public (undocumented)
interface Props {
	// (undocumented)
	appearance?: 'added' | 'default' | 'important' | 'primary' | 'primaryInverted' | 'removed';
	// (undocumented)
	createAnalyticsEvent?: any;
	// (undocumented)
	max?: number;
	// (undocumented)
	notificationLogProvider: Promise<NotificationLogProvider>;
	// (undocumented)
	onCountUpdated?: (param: ValueUpdatedParams) => void;
	// (undocumented)
	onCountUpdating?: (param: ValueUpdatingParams) => ValueUpdatingResult;
	// (undocumented)
	refreshOnHidden?: boolean;
	// (undocumented)
	refreshOnVisibilityChange?: boolean;
	// (undocumented)
	refreshRate?: number;
}

// @public (undocumented)
interface ValueUpdatedParams {
	// (undocumented)
	newCount: number;
	// (undocumented)
	oldCount: number;
	// (undocumented)
	source: string;
}

// @public (undocumented)
interface ValueUpdatingParams {
	// (undocumented)
	source: string;
	// (undocumented)
	visibilityChangesSinceTimer?: number;
}

// @public (undocumented)
interface ValueUpdatingResult {
	// (undocumented)
	countOverride?: number;
	// (undocumented)
	skip?: boolean;
}

// (No @packageDocumentation comment for this package)
```

<!--SECTION END: Main Entry Types-->

### Peer Dependencies

<!--SECTION START: Peer Dependencies-->

```json
{
	"react": "^16.8.0",
	"react-dom": "^16.8.0"
}
```

<!--SECTION END: Peer Dependencies-->
