/**
 * CLI options consumed by the `run` command action.
 *
 * @private internal utility of `$initializeRunCommand`
 */
export type RunCommandCliOptions = {
    readonly reload: boolean;
    readonly interactive: boolean;
    readonly formfactor: boolean;
    readonly json?: string;
    readonly verbose: boolean;
    readonly saveReport?: string;
    readonly provider: string;
    readonly remoteServerUrl: string;
};
/**
 * Runs the whole `ptbk run` flow as a top-down orchestration of focused steps.
 *
 * @private internal utility of `$initializeRunCommand`
 */
export declare function runCommandAction(pipelineSource: string | undefined, cliOptions: RunCommandCliOptions): Promise<void | never>;
