declare module "./index" { interface List { append(value: A): List; nth(index: number): A | undefined; } } export {};