import { IDispatchRequest } from "../../../../DispatchRequest"; import HelpEntry from "../../../../../help/HelpEntry"; export declare const argKeys: readonly ["id"]; export declare type GetPcArgKeys = typeof argKeys[number]; export declare const getPcFlagKeys: readonly []; export declare type GetPcFlagKeys = typeof getPcFlagKeys[number]; export declare const isGetPcArgs: (someValue: any) => someValue is Record<"id", string>; export declare const asGetPcArgs: (someValue: any) => Record<"id", string>; export declare const isGetPcFlags: (someValue: any) => someValue is Record; export declare const asGetPcFlagKeys: (someValue: any) => Record; export declare type GetPcRequest = IDispatchRequest; export declare const isGetPcRequest: (someValue: any) => someValue is GetPcRequest; export declare const asGetPcRequest: (someValue: any) => GetPcRequest; export declare const getPcEntry: HelpEntry;