import React from 'react'; import { ButtonProps } from '../Button/Button'; declare type EmptyStateSize = 'small' | 'medium' | 'large'; interface EmptyStateAction extends ButtonProps { 'data-cy'?: string; text: string; } export interface EmptyStateProps extends React.HTMLAttributes { children?: React.ReactNode; 'data-cy'?: string; description?: string; heading?: string; primaryAction?: EmptyStateAction; secondaryAction?: EmptyStateAction; size?: EmptyStateSize; } declare const EmptyState: React.ForwardRefExoticComponent>; export default EmptyState;