export declare class DeployConstant { static readonly DEPLOY_ERROR_TYPE = "DeployError"; static readonly DEPLOYMENT_TMP_FOLDER = ".deployment"; static readonly MILLIS_SECONDS: number; static readonly ZIP_TIME_MS_GRANULARITY: number; static readonly LATEST_TRUST_MS_TIME: Date; static readonly DEPLOYMENT_ZIP_CACHE_FILE = "deployment.zip"; static readonly DEPLOY_TIMEOUT_IN_MS: number; static readonly DEPLOY_CHECK_RETRY_TIMES = 120; static readonly BACKOFF_TIME_S = 10; static readonly AZURE_STORAGE_CONTAINER_NAME = "$web"; static readonly DAY_IN_MS: number; static readonly SAS_TOKEN_LIFE_TIME_PADDING: number; static readonly SAS_TOKEN_LIFE_TIME: number; static readonly DEFAULT_INDEX_DOCUMENT = "index.html"; static readonly DEFAULT_ERROR_DOCUMENT = "index.html"; static readonly DEPLOY_OVER_TIME: number; static readonly DEPLOY_UPLOAD_RETRY_TIMES = 2; } export declare enum DeployStatus { Pending = 0, Building = 1, Deploying = 2, Failed = 3, Success = 4 } //# sourceMappingURL=deployConstant.d.ts.map