export declare type DeploymentStrategy = 'Auto' | 'Download' | 'Manual';
export interface DeploymentSettings {
    deploymentStrategy: DeploymentStrategy;
}
export declare const isDeploymentSettings: import("@altostra/type-validations").ObjectOfTypeValidation<DeploymentSettings>;
