import React from 'react'; import type { EmptyStateProps } from './types'; /** * __Empty state__ * * A component used for presenting various empty states. * e.g. (no items, empty search, broken link, welcome screen etc.) * * @example * ```tsx * import EmptyState from '@atlaskit/empty-state'; * * // An example of a 404 state * export default () => { * Home Page} * secondaryAction={} * />; * }; * ``` */ declare const EmptyState: ({ buttonGroupLabel, description, header, headingLevel, headingSize, imageHeight, imageUrl, imageWidth, isLoading, maxImageHeight, maxImageWidth, primaryAction, renderImage, secondaryAction, width, tertiaryAction, testId, }: EmptyStateProps) => React.JSX.Element; export default EmptyState;