import execa from "execa"; import type { Logger } from "backfill-logger"; export type ExecaReturns = execa.ExecaChildProcess; export type BuildCommand = () => Promise; export declare function getRawBuildCommand(): string; export declare function createBuildCommand(buildCommand: (string | number)[], clearOutput: boolean, outputGlob: string[], logger: Logger): () => Promise;