import { type Options, type Result } from "execa"; export type ExecuteResult = Result<{ encoding: "utf8"; }>; export declare const execute: (stdout: NodeJS.WritableStream | null, file: string, args: readonly string[], options?: Options) => Promise; export type NotUndefined = T extends undefined ? never : T; export declare const requireContext: (context: T, name: K) => NotUndefined;