/** * Determines the type of a variable. * Useful for e.g. checking if a object is an error * @hidden */ export declare const type: (variable: any) => "string" | "number" | "boolean" | "symbol" | "object" | "function" | "error" | "date" | "json" | "math"; /** * Generates the cleaned price item * @hidden */ export declare const generateItem: (name: string, response: NodeSteamRawItem, currency: number) => Error | NodeSteamCleanItem;