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