import { AzureAppService } from './azure-arm-app-service'; import { Kudu } from './azure-arm-app-service-kudu'; export declare class AzureAppServiceUtility { private readonly _appService; private readonly _telemetryFeature; constructor(appService: AzureAppService, telemetryFeature?: string); getWebDeployPublishingProfile(): Promise; getApplicationURL(virtualApplication?: string): Promise; pingApplication(): Promise; getPhysicalPath(virtualApplication: string): Promise; getKuduService(): Promise; private getKuduAuthHeader; updateAndMonitorAppSettings(addProperties?: any, deleteProperties?: any, formatJSON?: boolean, perSlot?: boolean): Promise; enableRenameLockedFiles(): Promise; updateStartupCommandAndRuntimeStack(runtimeStack: string, startupCommand?: string): Promise; isSitePublishingCredentialsEnabled(): Promise; isFunctionAppOnCentauri(): Promise; }