import each from './each'; import types from './types'; declare class Select { constructor(selector: string | Element | Document); find(selector: string): Select; each(fn: types.AnyFn): Select; } export default Select;