/**
 * Allowed Environment values.
 */
export type Environment = 'development' | 'production' | 'staging';
/**
 * Get the current environment from server-side ENVIRONMENT
 * or client-side NEXT_PUBLIC_ENVIRONMET variables.
 * @returns The current environment value.
 */
export declare function getCurrentEnvironment(): Environment;
