import type { ValuesOf } from '@naturalcycles/js-lib'; import 'dotenv/config'; /** * @example * * const {a, b} = requreEnvKeys(['a', 'b']) * * Will throw if any of the passed keys is not defined. */ export declare function requireEnvKeys(...keys: T): { [k in ValuesOf]: string; }; export declare function requireFileToExist(filePath: string): void;