import { IDispatchRequest } from "../../../../DispatchRequest"; import HelpEntry from "../../../../../help/HelpEntry"; export declare const argKeys: readonly ["id"]; export declare type GetNpcArgKeys = typeof argKeys[number]; export declare const getNpcFlagKeys: readonly []; export declare type GetNpcFlagKeys = typeof getNpcFlagKeys[number]; export declare const isGetNpcArgs: (someValue: any) => someValue is Record<"id", string>; export declare const asGetNpcArgs: (someValue: any) => Record<"id", string>; export declare const isGetNpcFlags: (someValue: any) => someValue is Record; export declare const asGetNpcFlagKeys: (someValue: any) => Record; export declare type GetNpcRequest = IDispatchRequest; export declare const isGetNpcRequest: (someValue: any) => someValue is GetNpcRequest; export declare const asGetNpcRequest: (someValue: any) => GetNpcRequest; export declare const getNpcEntry: HelpEntry;