import type { Environment } from '@scalar/oas-utils/entities/environment'; export type EnvVariables = { key: string; value: string; source: 'global' | 'collection'; }[]; export type EnvConfig = { variables: Record; color?: string | undefined; description?: string | undefined; }; /** Gets the color of an environment with default fallback */ export declare function getEnvColor(environment: Environment): string; //# sourceMappingURL=env-helpers.d.ts.map