import * as React from "react"; export declare type StatusVariant = "online" | "away" | "busy" | "offline"; export interface StatusProps extends React.ComponentPropsWithoutRef<"div"> { /** * The state of the Status * * @default "offline" */ variant?: StatusVariant; /** * The label for the Status */ label?: string; } /** * * @public * * @description * * The Status component gives the condition of a thing or user. */ export declare const Status: React.FC;