import * as React from 'react'; import { ReadyRuntimeError } from '../../helpers/getErrorByType'; export type RuntimeErrorProps = { error: ReadyRuntimeError; }; declare const RuntimeError: React.FC; export declare const styles: string; export { RuntimeError };