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

## API Report File for "@atlaskit/empty-state"

> 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 type { ReactNode } from 'react';

// @public
const EmptyState: ({
	description,
	header,
	headingLevel,
	imageHeight,
	imageUrl,
	imageWidth,
	isLoading,
	maxImageHeight,
	maxImageWidth,
	primaryAction,
	renderImage,
	secondaryAction,
	width,
	size,
	tertiaryAction,
	testId,
}: EmptyStateProps) => JSX.Element;
export default EmptyState;

// @public (undocumented)
export interface EmptyStateProps {
	description?: ReactNode;
	header: string;
	headingLevel?: number;
	imageHeight?: number;
	imageUrl?: string;
	imageWidth?: number;
	isLoading?: boolean;
	maxImageHeight?: number;
	maxImageWidth?: number;
	primaryAction?: ReactNode;
	renderImage?: (props: RenderImageProps) => React.ReactNode;
	secondaryAction?: ReactNode;
	// @deprecated (undocumented)
	size?: Width;
	tertiaryAction?: ReactNode;
	testId?: string;
	width?: Width;
}

// @public (undocumented)
export interface RenderImageProps {
	// (undocumented)
	imageHeight?: number;
	// (undocumented)
	imageWidth?: number;
	// (undocumented)
	maxImageHeight?: number;
	// (undocumented)
	maxImageWidth?: number;
}

// @public (undocumented)
export type Sizes = 'narrow' | 'wide';

// @public (undocumented)
export type Width = Sizes;

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

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

### Peer Dependencies

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

```json
{
	"react": "^16.8.0"
}
```

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