bpms_site/.svn/pristine/b2/b283b93fcb4c2b0abbb75fb033fb8a0a7ae35f3f.svn-base
2025-11-02 16:38:49 +03:30

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 };