import { default as React } from 'react'; import { ThemeTypes } from '@viasat/beam-shared/utils/constants'; export interface EmptyStateProps extends React.ComponentPropsWithoutRef<'div'> { /** * Specify heading text for EmptyState */ heading?: React.ReactNode; /** * Specify body text for EmptyState */ body?: React.ReactNode; /** * Specify an icon for EmptyState */ icon?: React.ReactElement; /** * Add actions to EmptyState */ actions?: React.ReactNode; /** * Specify the theme of the EmptyState. By default it inherits the theme from the parent */ theme?: ThemeTypes; } export declare function EmptyState({ theme, heading, body, actions, icon, className: _className, ...props }: EmptyStateProps): import("react/jsx-runtime").JSX.Element; export default EmptyState;