import * as React from 'react';
import { MarginProps } from '@radix-ui/themes/props';

declare const getStatusColor: (state: "success" | "waiting" | "error") => "green" | "gray" | "red";
interface StatusProps extends Omit<React.ComponentPropsWithoutRef<"span">, "color">, MarginProps {
    children?: React.ReactNode;
    state: "success" | "waiting" | "error";
}
declare const Status: React.ForwardRefExoticComponent<StatusProps & React.RefAttributes<HTMLSpanElement>>;

export { Status, type StatusProps, getStatusColor };
