import { type ValidationStatus } from "@salt-ds/core"; import { type HTMLAttributes } from "react"; export interface SystemStatusProps extends HTMLAttributes { /** * A string to determine the current state of the SystemStatus. Defaults to `info`. */ status?: ValidationStatus; } export declare const SystemStatus: import("react").ForwardRefExoticComponent>;