import { Options, ResultPromise } from 'execa'; import { Context } from './@types/semantic-release/index.js'; export declare const __dirname: string; declare function normalizeVersion(version: string, options?: Options): Promise; declare function setopt(setupPy: string, command: string, option: string, value: string): ResultPromise; declare function pipe(context: Context): Options; declare function spawn(file: string | URL, args?: readonly string[], options?: Options): ResultPromise; declare function spawnCommand(command: string, options?: Options): ResultPromise; export { normalizeVersion, pipe, setopt, spawn, spawnCommand };