import { IDispatchRequest } from "../../../../DispatchRequest"; import HelpEntry from "../../../../../help/HelpEntry"; export declare const argKeys: readonly ["id"]; export declare type GetBattleArgKeys = typeof argKeys[number]; export declare const getBattleFlagKeys: readonly []; export declare type GetBattleFlagKeys = typeof getBattleFlagKeys[number]; export declare const isGetBattleArgs: (someValue: any) => someValue is Record<"id", string>; export declare const asGetBattleArgs: (someValue: any) => Record<"id", string>; export declare const isGetBattleFlags: (someValue: any) => someValue is Record; export declare const asGetBattleFlagKeys: (someValue: any) => Record; export declare type GetBattleRequest = IDispatchRequest; export declare const isGetBattleRequest: (someValue: any) => someValue is GetBattleRequest; export declare const asGetBattleRequest: (someValue: any) => GetBattleRequest; export declare const getBattleEntry: HelpEntry;