/**
 * Object containing URLs for app lifecycle management endpoints.
 * These URLs are used for various app operations such as registration, platform linking, publishing, versions, and deployments.
 */
declare const appRoutesUrl: {
    module: string;
    /**
     * Endpoint for app registrations (app-registrations)
     */
    appRegistration: string;
    /**
     * Endpoint for app platform links (app-platform-links)
     */
    appPlatformLink: string;
    /**
     * Endpoint for app build configs (app-build-configs)
     */
    appBuildConfig: string;
    /**
     * Endpoint for app store providers (app-store-providers)
     */
    appStoreProvider: string;
    /**
     * Endpoint for app publish details (app-publish)
     */
    appPublish: string;
    /**
     * Endpoint for app versions (app-versions)
     */
    appVersion: string;
    /**
     * Endpoint for app deployments (app-deployments)
     */
    appDeployment: string;
    /**
     * Endpoint for app changelogs (app-changelogs)
     */
    appChangelog: string;
    /**
     * Endpoint for app statistics (app-statistics)
     */
    appStatistics: string;
    /**
     * Endpoint for OTA update check (ota/check-update) - public endpoint for mobile apps
     */
    appOtaCheckUpdate: string;
    /**
     * Endpoint for OTA update success recording (ota/record-success) - public endpoint for mobile apps
     */
    appOtaRecordSuccess: string;
    /**
     * Endpoint for OTA update failure recording (ota/record-failure) - public endpoint for mobile apps
     */
    appOtaRecordFailure: string;
    /**
     * Endpoint for app registration starts (app-registration-starts)
     */
    appRegistrationStart: string;
    /**
     * Endpoint for app rollout configs (app-rollout-configs)
     */
    appRolloutConfig: string;
    /**
     * Endpoint for app user update status (app-user-update-status)
     */
    appUserUpdateStatus: string;
};
export { appRoutesUrl };
