import types from './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 default find;