import 'dotenv/config'; import { User } from '../../types'; declare type EnvironmentType = 'dev' | 'test' | 'staging' | 'production'; declare type TestUser = Pick & { authToken?: string; }; declare type ConfigType = { environment: EnvironmentType; testUsers: { userA: TestUser; userB: TestUser; }; endpoints: Record; authToken: string; }; declare const getConfig: () => ConfigType; export { ConfigType, EnvironmentType, getConfig };