import type { $PipelineJson } from '../../commands/_common/types/CommandParser';
import type { $side_effect } from '../../utils/organization/$side_effect';
/**
 * Used in `parsePipeline`
 *
 * @private
 */
export type SyncHighLevelAbstraction = {
    type: 'SYNC';
    /**
     * Apply the abstraction to the `pipelineJson`
     *
     * Note: `$` is used to indicate that this function mutates given `pipelineJson`
     */
    $applyToPipelineJson($pipelineJson: $PipelineJson): $side_effect;
};
