export declare class Constants { static readonly SolutionPlugin: { id: string; configKeys: { resourceNameSuffix: string; subscriptionId: string; resourceGroupName: string; location: string; }; }; static readonly AadAppPlugin: { id: string; configKeys: { clientId: string; clientSecret: string; applicationIdUris: string; oauthAuthority: string; teamsMobileDesktopAppId: string; teamsWebAppId: string; }; }; static readonly FrontendPlugin: { id: string; configKeys: { endpoint: string; }; }; static readonly LocalDebugPlugin: { id: string; configKeys: { endpoint: string; }; }; static readonly SimpleAuthPlugin: { id: string; name: string; shortName: string; configKeys: { endpoint: string; filePath: string; environmentVariableParams: string; skuName: string; }; }; static readonly ResourcesFolderName: string; static readonly SimpleAuthFileName: string; static readonly SimpleAuthZipName: (version: string) => string; static readonly VersionFileName: string; static readonly ResourceNameMaxLength = 40; static readonly SimpleAuthSuffix = "sa"; static readonly LocalPrefix = "local_"; static readonly Component = "component"; static readonly ApplicationSettingsKeys: { clientId: string; clientSecret: string; oauthAuthority: string; applicationIdUris: string; allowedAppIds: string; tabAppEndpoint: string; aadMetadataAddress: string; }; static readonly ProgressBar: { start: string; provision: { title: string; createAppServicePlan: string; createWebApp: string; zipDeploy: string; }; postProvision: { title: string; updateWebApp: string; }; }; static readonly FreeServerFarmsQuotaErrorFromAzure = "The maximum number of Free ServerFarms allowed in a Subscription is 10"; static readonly FreeServerFarmsQuotaErrorToUser = "The maximum number of Free App Service Plan allowed in a Subscription is 10. Delete a free App Service plan and try again."; static readonly FreeServerFarmsQuotaErrorHelpLink = "https://aka.ms/teamsfx-sa-help#freeserverfarmsquotaerror"; } export interface Message { log: string; telemetry: string; } export declare class Messages { static readonly getLog: (log: string) => string; private static readonly getEventName; static readonly StartLocalDebug: Message; static readonly EndLocalDebug: Message; static readonly StartPostLocalDebug: Message; static readonly EndPostLocalDebug: Message; static readonly StartProvision: Message; static readonly EndProvision: Message; static readonly StartPostProvision: Message; static readonly EndPostProvision: Message; } //# sourceMappingURL=constants.d.ts.map