import type { Options } from '@rsmax/types'; type Env = Record; export default function getEnvironment(options: Options, target: string): { raw: Env; stringified: { [x: string]: string | undefined; }; }; export {};