import { IDispatchRequest } from "../../../../DispatchRequest"; import HelpEntry from "../../../../../help/HelpEntry"; export declare const argKeys: readonly ["id"]; export declare type GetTownArgKeys = typeof argKeys[number]; export declare const getTownFlagKeys: readonly []; export declare type GetTownFlagKeys = typeof getTownFlagKeys[number]; export declare const isGetTownArgs: (someValue: any) => someValue is Record<"id", string>; export declare const asGetTownArgs: (someValue: any) => Record<"id", string>; export declare const isGetTownFlags: (someValue: any) => someValue is Record; export declare const asGetTownFlagKeys: (someValue: any) => Record; export declare type GetTownRequest = IDispatchRequest; export declare const isGetTownRequest: (someValue: any) => someValue is GetTownRequest; export declare const asGetTownRequest: (someValue: any) => GetTownRequest; export declare const getTownEntry: HelpEntry;