9 lines
284 B
Plaintext
9 lines
284 B
Plaintext
import * as React from 'react';
|
|
import { ReadyRuntimeError } from '../../helpers/getErrorByType';
|
|
export type RuntimeErrorProps = {
|
|
error: ReadyRuntimeError;
|
|
};
|
|
declare const RuntimeError: React.FC<RuntimeErrorProps>;
|
|
export declare const styles: string;
|
|
export { RuntimeError };
|