import { Job } from './interfaces-1.0'; import { ActivatedJob } from './interfaces-grpc-1.0'; export declare function parseVariables(response: T): T & { variables: JSONDoc; }; export declare function parseVariablesAndCustomHeadersToJSON(response: ActivatedJob): Job; export declare function stringifyVariables(request: T): V; declare type JSON = string | number | boolean | JSON[] | JSONDoc[]; interface JSONDoc { [key: string]: JSON; } export {};