import { type CSSProperties, type HTMLAttributes, type ReactNode } from 'react';
import { type CssLength } from '../../../utils/css';
export type GlitchErrorPageProps = Omit, 'children' | 'title'> & {
title?: ReactNode;
message?: ReactNode;
visualTitle?: string;
visualMessage?: string;
children?: ReactNode;
showCopy?: boolean;
animated?: boolean;
background?: CSSProperties['background'];
accentColor?: CSSProperties['color'];
minHeight?: CssLength;
contentClassName?: string;
signalClassName?: string;
ariaLabel?: string;
};
export declare const GlitchErrorPage: ({ title, message, visualTitle, visualMessage, children, showCopy, animated, background, accentColor, minHeight, className, contentClassName, signalClassName, style, ariaLabel, ...rest }: GlitchErrorPageProps) => import("react/jsx-runtime").JSX.Element;