import { SSTRunExecutorSchema } from "../executors/sst/schema";
import { ParsedExecutorInterface } from "../interfaces/parsed-executor.interface";
export declare const executorPropKeys: string[];
export declare const LARGE_BUFFER: number;
export declare function parseArgs(options: SSTRunExecutorSchema): Record<string, string>;
export declare function createCommand(command: string, options: ParsedExecutorInterface): string;
export declare function runCommandProcess(command: string, cwd: string): Promise<boolean>;
