import { ButtonProps } from '../button/Button'; import { LinkAnchor } from '../link/Link'; import { HeadingSize } from '../../tokens/heading-sizes/HeadingSizes'; import { HTMLAttributes } from 'react'; export interface EmptyStateHeading { as?: HeadingSize; children: string; } export interface EmptyStateProps extends HTMLAttributes { /** If provided, renders a button */ feButton?: Omit; /** If provided, renders a heading */ feHeading?: EmptyStateHeading; /** If provided, renders a button */ feLink?: Omit; /** If provided, renders a descriptive text */ feText?: string; } /** * The `` should be used when content can’t be shown * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/5ea6a919c465cf512ac038f2) for design principles. */ declare const EmptyState: import("react").ForwardRefExoticComponent>; export default EmptyState;