export interface DeploymentConfiguration { modules: string[]; environment: { [key: string]: string; }; } export declare enum TagComparison { FirstIsNewer = 0, SecondIsNewer = 1, Equal = 2 }