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, "color">, MarginProps { children?: React.ReactNode; state: "success" | "waiting" | "error"; } declare const Status: React.ForwardRefExoticComponent>; export { Status, type StatusProps, getStatusColor };