import React from 'react'; import { BadgeProps } from 'antd/lib/badge'; export interface RunStatusProps { status: BadgeProps['status']; textMap: { [key: string]: string; }; tooltip: React.ReactNode; } export declare class RunStatus extends React.Component { static defaultProps: { textMap: { success: string; error: string; default: string; processing: string; warning: string; }; }; render(): JSX.Element; }