import { I as IterableContainer } from './IterableContainer-CtfinwiH.cjs'; /** * Returns the first `n` elements of `array`. * * @param array - The array. * @param n - The number of elements to take. * @signature * R.take(array, n) * @example * R.take([1, 2, 3, 4, 3, 2, 1], 3) // => [1, 2, 3] * @dataFirst * @lazy * @category Array */ declare function take(array: T, n: number): Array; /** * Returns the first `n` elements of `array`. * * @param n - The number of elements to take. * @signature * R.take(n)(array) * @example * R.pipe([1, 2, 3, 4, 3, 2, 1], R.take(n)) // => [1, 2, 3] * @dataLast * @lazy * @category Array */ declare function take(n: number): (array: T) => Array; export { take };