import { IDispatchRequest } from "../../../DispatchRequest"; import HelpEntry from "../../../../help/HelpEntry"; export declare const argKeys: readonly ["heal", "name", "battleId"]; export declare type HealArgKeys = typeof argKeys[number]; export declare const healHelpFlagKeys: readonly []; export declare type HealFlagKeys = typeof healHelpFlagKeys[number]; export declare const isHealArgs: (someValue: any) => someValue is Record<"name" | "heal" | "battleId", string>; export declare const asHealArgs: (someValue: any) => Record<"name" | "heal" | "battleId", string>; export declare const isHealFlags: (someValue: any) => someValue is Record; export declare const asHealFlagKeys: (someValue: any) => Record; export declare type HealRequest = IDispatchRequest; export declare const isHealRequest: (someValue: any) => someValue is HealRequest; export declare const asHealRequest: (someValue: any) => HealRequest; export declare const healHelpEntry: HelpEntry;