export declare class EnvVarParsing { static parseNumber(key: string): number; static parseBoolean(key: string, defaultValue?: boolean): boolean; static parseStringArray(key: string, defaultValue?: string[], separator?: string): string[] | undefined; }