import type { StringKeyOf } from 'type-fest'; /** * Env variables that can be passed to the GraphQL Mesh CLI. */ export declare type Env = { /** * Enable debug logging. */ debug?: boolean; }; /** * Env variables in a format accepted by the GraphQL Mesh CLI. */ export declare type CliEnv = { [E in StringKeyOf as Uppercase]?: E extends 'debug' ? '0' | '1' : string; }; /** * Get a list of Env variables that can be passed to the * GraphQL Mesh CLI. */ export declare const getCliEnv: (options: Env) => CliEnv;