/// <reference types="qs" />
/// <reference types="express" />
export declare type DeployBody = {
    suffix: string;
    resourceType: 'Package' | 'Repository';
    release: string;
    env: string[];
    plan: string;
    version: string;
};
export declare const deploy: import("express").RequestHandler<import("express-serve-static-core").ParamsDictionary, any, any, import("qs").ParsedQs, Record<string, any>>;
