import { FC } from 'react';
export declare type IStatusProps = {
    type?: 'success' | 'error';
};
declare const Status: FC<IStatusProps>;
export default Status;
