import { IDispatchRequest } from "../../../../DispatchRequest"; import HelpEntry from "../../../../../help/HelpEntry"; export declare const argKeys: readonly ["id"]; export declare type GetShopArgKeys = typeof argKeys[number]; export declare const getShopFlagKeys: readonly []; export declare type GetShopFlagKeys = typeof getShopFlagKeys[number]; export declare const isGetShopArgs: (someValue: any) => someValue is Record<"id", string>; export declare const asGetShopArgs: (someValue: any) => Record<"id", string>; export declare const isGetShopFlags: (someValue: any) => someValue is Record; export declare const asGetShopFlagKeys: (someValue: any) => Record; export declare type GetShopRequest = IDispatchRequest; export declare const isGetShopRequest: (someValue: any) => someValue is GetShopRequest; export declare const asGetShopRequest: (someValue: any) => GetShopRequest; export declare const getShopEntry: HelpEntry;