import * as React from 'react'; export declare type IType = 'primary' | 'default' | 'success' | 'error' | 'warning'; interface IStatusProps { status?: IType; className?: string; } export declare class Status extends React.Component { constructor(props: any); shouldComponentUpdate(nextProps: any, nextState: any): boolean; render(): JSX.Element; } export {};