import React, { HTMLAttributes } from "react";
import { Colors } from "../colors";
export interface StatusProps extends HTMLAttributes {
color?: Colors;
withDot?: boolean;
lite?: boolean;
}
export interface StatusDotProps {
color?: Colors;
animatedDot?: boolean;
}
export interface StatusIndicatorProps {
color: Colors;
}
export declare const StatusDot: ({ color, animatedDot }: StatusDotProps) => React.JSX.Element;
declare const Status: ({ children, className, color, withDot, animatedDot, lite, ...props }: StatusProps & StatusDotProps) => React.JSX.Element;
export declare const StatusIndicator: ({ color }: StatusIndicatorProps) => React.JSX.Element;
export default Status;