export declare function Status(props: StatusProps): JSX.Element; export interface StatusProps { type: 'success' | 'info' | 'warning' | 'error' | 'invalid'; status: string; style?: any; }