import { CSSProperties, FC, PropsWithChildren } from 'react'; import './style'; export interface IStatusBoxProps { type?: 'warning' | 'success' | 'waiting' | 'faild' | 'error' | 'failed'; color?: string; background?: string; className?: any; style?: CSSProperties; } declare const IglooStatusBox: FC>; export default IglooStatusBox;