export declare function reviewPipeline({ host, projectId, buildId, pipelineId, stepId, elementId, reviewUsers, status, suggest, params, accessToken, }: {
    host: string;
    projectId: string;
    buildId: string;
    pipelineId?: string;
    elementId?: string;
    stepId?: string;
    reviewUsers?: string[] | string;
    status?: 'PROCESS' | 'ABORT';
    suggest?: string;
    params?: Array<{
        chineseName?: string;
        desc?: string;
        key: string;
        required: boolean;
        value?: string;
        valueType: any;
    }>;
    accessToken?: string;
}): Promise<unknown>;
