export { loadVariables }; /** * Loads variables defined in a step object into the environment. * @async * @param {Object} step - The step object containing variable definitions. * @param {Object} step.loadVariables - The variables to be loaded. * @returns {Promise} A result object indicating success or failure. * @returns {string} result.status - "PASS" if successful, "FAIL" otherwise. * @returns {string} result.description - Description of the result or error message. */ declare function loadVariables({ step }: { step: any; }): Promise<{ status: string; description: string; }>; //# sourceMappingURL=loadVariables.d.ts.map