import type { Target } from '../types.js'; export declare function executeStaleWithWarning(targetName: string, projectRoot: string, args: string[], options: { verbose: boolean; }): Promise; export declare function executeTarget(target: Target, projectRoot: string, args: string[], options: { verbose: boolean; }): Promise; export declare function summarizeFailureOutput(state: PoltergeistStateWithError, opts: { verbose: boolean; }): void; type PoltergeistStateWithError = { lastBuildError?: { exitCode?: number; errorOutput?: string[]; timestamp?: string; }; lastBuild?: { errorSummary?: string; gitHash?: string; }; }; export {}; //# sourceMappingURL=execution.d.ts.map