/** * Get an environment variable. * * @param name - The name of the environment variable. * @returns The value of the environment variable or undefined if it is not set. */ export declare function getEnvVar(name: string): string | undefined;