export declare function read(): Record<string, string | undefined>;
export declare function read(key: string): string | undefined;
export declare function read<T>(key: string, alt: T): T | string;
