/**
 * Enumeration representing different application environments.
 *
 * This enum is used to specify and manage various environments in which
 * the application might run, such as local development, staging, and
 * production environments.
 *
 * Members:
 * - LOCAL: Represents the local development environment.
 * - STAGING: Represents the staging environment.
 * - PRODUCTION: Represents the production environment.
 */
export declare enum EnvironmentEnum {
    LOCAL = "local",
    STAGING = "staging",
    PRODUCTION = "production"
}
