export default baseAt;
/**
 * The base implementation of `at` without support for individual paths.
 *
 * @private
 * @param {Object} object The object to iterate over.
 * @param {(string|number)[]} paths The property paths to pick.
 * @returns {Array} Returns the picked elements.
 */
declare function baseAt(object: any, paths: (string | number)[]): any[];
