import { type UnhandledErrorAction, type UnhandledRejectionAction } from '../../shared'; import type { VersionInfo } from '../../../../../server/dev/parse-version-info'; export type SupportedErrorEvent = { id: number; event: UnhandledErrorAction | UnhandledRejectionAction; }; export type ErrorsProps = { isAppDir: boolean; errors: SupportedErrorEvent[]; initialDisplayState: DisplayState; versionInfo?: VersionInfo; }; type DisplayState = 'minimized' | 'fullscreen' | 'hidden'; export declare function Errors({ isAppDir, errors, initialDisplayState, versionInfo, }: ErrorsProps): import("react/jsx-runtime").JSX.Element | null; export declare const styles: string; export {};