import types from './types'; declare function pluck( list: types.List, key: K ): T[K][]; declare function pluck(object: any, key: string | string[]): any[]; export default pluck;