import { type BgVariant } from '../../utils/bg.js'; export interface ErrorSimpleProps { code?: string; headline?: string; description?: string; cta?: React.ReactNode; bg?: BgVariant; className?: string; } export declare function ErrorSimple({ code, headline, description, cta, bg, className, }: ErrorSimpleProps): import("react/jsx-runtime").JSX.Element;