import Deployment from './Deployment';
/**
 * Configuration file
 * @author Gabe Abrams
 */
declare type Config = {
    dbName?: string;
    deployments: Deployment[];
    customStackDeploymentProcess: {
        description: string;
        steps: Array<{
            title: string;
            description: string;
            command?: string;
            askUserBeforeContinuing?: boolean;
            dontClearBefore?: boolean;
        }>;
    };
    relatedClusters?: {
        name: string;
        cluster: string;
    }[];
};
export default Config;
