/// <reference types="react" />
import { Theme } from '@emotion/react';
export type StatusColorValues = 'succsess' | 'error' | 'info' | 'warning' | 'default';
export declare const StatusColor: (theme: Theme) => {
    succsess: string;
    error: string;
    info: string;
    warning: string;
    default: string;
};
export interface StatusProps {
    status: StatusColorValues;
    children?: React.ReactElement | React.ReactNode;
}
