import BaseCommand from "../../../../cli/base-command.js"; export type RunScriptContext = import("./cli-command-context.js").CliCommandContext; /** Node command for running a custom script file in initialized app/DB context. */ export default class RunScriptCommand extends BaseCommand { /** * Runs execute. * @returns {Promise>} - Resolves with the script function result. */ execute(): Promise>; /** * Runs initialize runtime. * @returns {Promise} - Resolves when runtime initialization is complete. */ initializeRuntime(): Promise; /** * Runs script file path. * @returns {string} - Absolute path to the user-provided script file. */ scriptFilePath(): string; /** * Runs build run script context. * @returns {RunScriptContext} - Runtime context passed to the script function. */ buildRunScriptContext(): RunScriptContext; } //# sourceMappingURL=run-script.d.ts.map