export declare class Constants { static readonly FRAMEWORK_NONE = "none"; static readonly FRAMEWORK_REACT = "react"; static readonly MAX_ALIAS_LENGTH = 40; static readonly MAX_BUNDLE_NAME_LENGTH = 64; static readonly CALLED_ID = "teamsdev"; static readonly APP_CATALOG_REFRESH_TIME = 2000; static readonly APP_CATALOG_MAX_TIMES = 30; static readonly PLUGIN_NAME = "SPFx"; static readonly BUILD_SHAREPOINT_PACKAGE = "Build SharePoint Package"; static readonly READ_MORE = "Read more"; static readonly CANCEL = "Cancel"; static readonly DEPLOY_GUIDE = "https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/using-web-part-as-ms-teams-tab#package-and-deploy-your-web-part-to-sharepoint"; } export declare class PlaceHolders { static readonly componentName = "<%= componentName %>"; static readonly componentNameCamelCase = "<%= componentNameCamelCase %>"; static readonly componentClassName = "<%= componentClassName %>"; static readonly componentStrings = "<%= componentStrings %>"; static readonly libraryName = "<%= libraryName %>"; static readonly componentId = "<%= componentId %>"; static readonly componentAlias = "<%= componentAlias %>"; static readonly componentDescription = "<%= componentDescription %>"; static readonly componentNameUnescaped = "<%= componentNameUnescaped %>"; static readonly componentClassNameKebabCase = "<%= componentClassNameKebabCase %>"; } export declare class TelemetryKey { static readonly Component = "component"; static readonly Success = "success"; static readonly ErrorType = "error-type"; static readonly ErrorMessage = "error-message"; } export declare class TelemetryValue { static readonly Success = "yes"; static readonly Fail = "no"; static readonly UserError = "user"; static readonly SystemError = "system"; } export declare class TelemetryEvent { static readonly StartSuffix = "-start"; static readonly Scaffold = "scaffold"; static readonly PreDeploy = "pre-deploy"; static readonly Deploy = "deploy"; } export declare class ProgressTitleMessage { static readonly PreDeployProgressTitle = "Building SharePoint package"; static readonly DeployProgressTitle: string; } export declare class PreDeployProgressMessage { static readonly NpmInstall = "Run: npm install. This may take more than 5 minutes to finish"; static readonly GulpBundle = "Run: gulp bundle --ship"; static readonly GulpPackage = "Run: gulp package-solution --ship"; } export declare class DeployProgressMessage { static readonly GetSPAppCatalog = "Get SharePoint app catalog"; static readonly UploadAndDeploy = "Upload and deploy SPFx package on your tenant website"; } //# sourceMappingURL=constants.d.ts.map