/** * Get an environment variable or throw an error if it is not set. * @param key The key of the environment variable * @returns The value of the environment variable * @throws Error if the environment variable is not set */ export declare function getEnvOrThrow(key: string): string;