declare module '../../../collections/List' { namespace List { /** Returns an List from source. */ function from(source: Iterable): List; } } export {};