import { IDispatchRequest } from "../../../DispatchRequest"; import HelpEntry from "../../../../help/HelpEntry"; export declare const argKeys: readonly []; export declare type SetStatusArgKeys = typeof argKeys[number]; export declare const setStatusHelpFlagKeys: readonly ["season", "weather", "time", "location", "temperature"]; export declare type SetStatusFlagKeys = typeof setStatusHelpFlagKeys[number]; export declare const isSetStatusArgs: (someValue: any) => someValue is Record; export declare const asSetStatusArgs: (someValue: any) => Record; export declare const isSetStatusFlags: (someValue: any) => someValue is Record<"season" | "temperature" | "time" | "location" | "weather", import("../../../flags").FlagValue>; export declare const asSetStatusFlagKeys: (someValue: any) => Record<"season" | "temperature" | "time" | "location" | "weather", import("../../../flags").FlagValue>; export declare type SetStatusRequest = IDispatchRequest; export declare const isSetStatusRequest: (someValue: any) => someValue is SetStatusRequest; export declare const asSetStatusRequest: (someValue: any) => SetStatusRequest; export declare const SetStatusEntry: HelpEntry; export declare const setStatusHelpEntry: HelpEntry;