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