import { IDispatchRequest } from "../../../DispatchRequest"; import HelpEntry from "../../../../help/HelpEntry"; export declare const argKeys: readonly ["season"]; export declare type CreateWeatherArgKeys = typeof argKeys[number]; export declare const createWeatherFlagKeys: readonly []; export declare type CreateWeatherFlagKeys = typeof createWeatherFlagKeys[number]; export declare const isCreateWeatherArgs: (someValue: any) => someValue is Record<"season", string>; export declare const asCreateWeatherArgs: (someValue: any) => Record<"season", string>; export declare const isCreateWeatherFlags: (someValue: any) => someValue is Record; export declare const asCreateWeatherFlagKeys: (someValue: any) => Record; export declare type CreateWeatherRequest = IDispatchRequest; export declare const isCreateWeatherRequest: (someValue: any) => someValue is CreateWeatherRequest; export declare const asCreateWeatherRequest: (someValue: any) => CreateWeatherRequest; export declare const createWeatherEntry: HelpEntry;