export default function parseArray<T>(valueParser: (value: string) => T): (arrayString: string) => (T | null)[];
