import { type ComponentPropsWithoutRef, type ReactNode } from "react"; interface SystemStatusContentProps extends ComponentPropsWithoutRef<"div"> { /** * The content of SystemStatusContent */ children: ReactNode; } export declare const SystemStatusContent: import("react").ForwardRefExoticComponent>; export {};