export declare const HUBSPOT_PROJECT_COMPONENTS_GITHUB_PATH: "HubSpot/hubspot-project-components"; export declare const DEFAULT_PROJECT_TEMPLATE_BRANCH: "main"; export declare const FEEDBACK_INTERVAL: 10; export declare const HUBSPOT_FOLDER: "@hubspot"; export declare const MARKETPLACE_FOLDER: "@marketplace"; export declare const DEFAULT_POLLING_DELAY = 2000; export declare const PREVIEW_POLL_TIMEOUT: number; export declare const PROJECT_CONFIG_FILE: "hsproject.json"; export declare const PROJECT_BUILD_STATES: { readonly BUILDING: "BUILDING"; readonly ENQUEUED: "ENQUEUED"; readonly FAILURE: "FAILURE"; readonly PENDING: "PENDING"; readonly SUCCESS: "SUCCESS"; }; export declare const PROJECT_DEPLOY_STATES: { readonly DEPLOYING: "DEPLOYING"; readonly FAILURE: "FAILURE"; readonly PENDING: "PENDING"; readonly SUCCESS: "SUCCESS"; }; export declare const PROJECT_BUILD_TEXT: { readonly STATES: { readonly BUILDING: "BUILDING"; readonly ENQUEUED: "ENQUEUED"; readonly FAILURE: "FAILURE"; readonly PENDING: "PENDING"; readonly SUCCESS: "SUCCESS"; }; readonly STATUS_TEXT: "Building"; readonly SUBTASK_KEY: "subbuildStatuses"; readonly TYPE_KEY: "buildType"; readonly SUBTASK_NAME_KEY: "buildName"; }; export declare const PROJECT_DEPLOY_TEXT: { readonly STATES: { readonly DEPLOYING: "DEPLOYING"; readonly FAILURE: "FAILURE"; readonly PENDING: "PENDING"; readonly SUCCESS: "SUCCESS"; }; readonly STATUS_TEXT: "Deploying"; readonly SUBTASK_KEY: "subdeployStatuses"; readonly TYPE_KEY: "deployType"; readonly SUBTASK_NAME_KEY: "deployName"; }; export declare const PROJECT_ERROR_TYPES: { readonly PROJECT_LOCKED: "BuildPipelineErrorType.PROJECT_LOCKED"; readonly MISSING_PROJECT_PROVISION: "BuildPipelineErrorType.MISSING_PROJECT_PROVISION"; readonly BUILD_NOT_IN_PROGRESS: "BuildPipelineErrorType.BUILD_NOT_IN_PROGRESS"; readonly SUBBUILD_FAILED: "BuildPipelineErrorType.DEPENDENT_SUBBUILD_FAILED"; readonly SUBDEPLOY_FAILED: "DeployPipelineErrorType.DEPENDENT_SUBDEPLOY_FAILED"; readonly DEPLOY_CONTAINS_REMOVALS: "DeployPipelineErrorType.WARNING_DEPLOY_CONTAINS_REMOVALS"; }; export declare const PROJECT_TASK_TYPES: { [key: string]: string; }; export declare const PROJECT_COMPONENT_TYPES: { readonly PROJECTS: "projects"; readonly COMPONENTS: "components"; }; export declare const PLATFORM_VERSION_ERROR_TYPES: { readonly PLATFORM_VERSION_NOT_SPECIFIED: "PlatformVersionErrorType.PLATFORM_VERSION_NOT_SPECIFIED"; readonly PLATFORM_VERSION_RETIRED: "PlatformVersionErrorType.PLATFORM_VERSION_RETIRED"; readonly PLATFORM_VERSION_SPECIFIED_DOES_NOT_EXIST: "PlatformVersionErrorType.PLATFORM_VERSION_SPECIFIED_DOES_NOT_EXIST"; }; export declare const IR_COMPONENT_TYPES: { readonly APPLICATION: "APPLICATION"; readonly CARD: "CARD"; }; export declare const APP_DISTRIBUTION_TYPES: { readonly MARKETPLACE: "marketplace"; readonly PRIVATE: "private"; }; export declare const APP_AUTH_TYPES: { readonly OAUTH: "oauth"; readonly STATIC: "static"; }; export declare const FEATURES: { readonly UNIFIED_APPS: "Developers:UnifiedApps:PrivateBeta"; readonly APP_EVENTS: "Developers:UnifiedApps:AppEventsAccess"; readonly THEME_MIGRATION_2025_2: "Developers:ProjectThemeMigrations:2025.2"; readonly AGENT_TOOLS: "ThirdPartyAgentTools"; }; export declare const LOCAL_DEV_UI_MESSAGE_SEND_TYPES: { UPLOAD_SUCCESS: string; UPLOAD_FAILURE: string; DEPLOY_SUCCESS: string; DEPLOY_FAILURE: string; UPDATE_PROJECT_NODES: string; UPDATE_APP_DATA: string; UPDATE_PROJECT_DATA: string; UPDATE_UPLOAD_WARNINGS: string; DEV_SERVERS_STARTED: string; }; export declare const LOCAL_DEV_UI_MESSAGE_RECEIVE_TYPES: { UPLOAD: string; DEPLOY: string; VIEWED_WELCOME_SCREEN: string; APP_INSTALL_SUCCESS: string; APP_INSTALL_INITIATED: string; APP_INSTALL_FAILURE: string; }; export declare const APP_INSTALLATION_STATES: { readonly NOT_INSTALLED: "NOT_INSTALLED"; readonly INSTALLED: "INSTALLED"; readonly INSTALLED_WITH_OUTDATED_SCOPES: "INSTALLED_WITH_OUTDATED_SCOPES"; readonly UNKNOWN: "UNKNOWN"; }; export declare const staticAuth = "static"; export declare const oAuth = "oauth"; export declare const privateDistribution = "private"; export declare const marketplaceDistribution = "marketplace"; export declare const appComponent = "app"; export declare const GET_STARTED_OPTIONS: { readonly APP: "APP"; readonly CMS: "CMS"; }; export declare const LOCAL_DEV_SERVER_MESSAGE_TYPES: { readonly INITIAL: "INITIAL"; readonly WEBSOCKET_SERVER_CONNECTED: "WEBSOCKET_SERVER_CONNECTED"; readonly STATIC_AUTH_APP_INSTALL_SUCCESS: "APP_INSTALL_SUCCESS"; readonly STATIC_AUTH_APP_INSTALL_FAILURE: "APP_INSTALL_FAILURE"; readonly OAUTH_APP_INSTALL_INITIATED: "APP_INSTALL_INITIATED"; }; export declare const LOCAL_DEV_WEBSOCKET_SERVER_INSTANCE_ID = "local-dev-ui-websocket-server"; export declare const CONFIG_LOCAL_STATE_FLAGS: { readonly LOCAL_DEV_UI_WELCOME: "LOCAL_DEV_UI_WELCOME"; }; export declare const EMPTY_PROJECT = "empty"; export declare const PROJECT_WITH_APP = "app"; export declare const LEGACY_SERVERLESS_FILE = "serverless.json"; export declare const LEGACY_PUBLIC_APP_FILE = "public-app.json"; export declare const LEGACY_PRIVATE_APP_FILE = "app.json"; export declare const THEME_FILE = "theme.json"; export declare const CMS_ASSETS_FILE = "cms-assets.json"; export declare const LEGACY_CONFIG_FILES: string[]; export declare const ACCOUNT_LEVELS: { readonly FREE: "FREE"; readonly STARTER: "STARTER"; readonly PROFESSIONAL: "PROFESSIONAL"; readonly ENTERPRISE: "ENTERPRISE"; }; export declare const ACCOUNT_LEVEL_CHOICES: readonly ["FREE", "STARTER", "PROFESSIONAL", "ENTERPRISE"]; export declare const FEEDBACK_URL = "https://developers.hubspot.com/feedback"; export declare const LOCAL_DEV_DEFAULT_PORT = 4828;