import { ReactElement } from 'react'; import { ButtonPrimaryPropsType } from '../Button/variations/ButtonPrimary'; import { LinkProps } from '../Link/Link'; export type ErrorStatePropTypes = { title: string; description: string; action?: Omit, 'size'>; link?: ReactElement | LinkProps; }; export declare function ErrorState({ title, description, action, link }: ErrorStatePropTypes): import("react/jsx-runtime").JSX.Element;