/// <reference types="react" />
import { Color } from "../common";
export interface CardStatusProps {
    color: Color;
    top?: boolean;
    right?: boolean;
    bottom?: boolean;
    left?: boolean;
}
declare function CardStatus({ color, top, right, bottom, left }: CardStatusProps): JSX.Element;
export default CardStatus;
