import React, { PropsWithChildren } from 'react'; export type StatusClassKey = 'status' | 'ok' | 'warning' | 'error' | 'pending' | 'running' | 'aborted'; export declare function StatusOK(props: PropsWithChildren<{}>): React.JSX.Element; export declare function StatusWarning(props: PropsWithChildren<{}>): React.JSX.Element; export declare function StatusError(props: PropsWithChildren<{}>): React.JSX.Element; export declare function StatusPending(props: PropsWithChildren<{}>): React.JSX.Element; export declare function StatusRunning(props: PropsWithChildren<{}>): React.JSX.Element; export declare function StatusAborted(props: PropsWithChildren<{}>): React.JSX.Element;