import Deployment from './Deployment';
/**
 * Configuration file
 * @author Gabe Abrams
 */
declare type Config = {
    dbName?: string;
    deployments: Deployment[];
    relatedClusters?: {
        name: string;
        cluster: string;
    }[];
};
export default Config;
