export default function memoize<V>(fn: (arg: string) => V): (arg: string) => V;
