export declare const Code: import("styled-components/dist/types").IStyledComponentBase<"web", Omit, HTMLPreElement>, "style"> & { style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined; }> & string; type CubeError = Error & { response?: { stack: string; }; }; type FatalErrorProps = { error: CubeError | string; stack?: string | null; }; export declare function FatalError({ error, stack }: FatalErrorProps): import("react/jsx-runtime").JSX.Element; export {};