import types = require('./types'); declare function find( object: types.List, iterator: types.ListIterator, context?: any ): T | undefined; declare function find( object: types.Dictionary, iterator: types.ObjectIterator, context?: any ): T | undefined; export = find;