import type { ReactElement } from "react";
import type { Status } from "../style/Status.js";
export interface StatusIconProps {
    status?: Status;
    small?: boolean;
    normal?: boolean;
    large?: boolean;
    xlarge?: boolean;
    xxlarge?: boolean;
}
/** Output a status icon based on the current status of something. */
export declare function StatusIcon({ status, ...variants }: StatusIconProps): ReactElement;
