/**
 * One deployment instance
 * @author Gabe Abrams
 */
declare type Deployment = {
    name: string;
    app: string;
    profile: string;
    customStackInfo?: {
        [k: string]: any;
    };
};
export default Deployment;
