import { Apply } from './types'; /** * Given a list of arguments and a function, applies the function with * the given arguments. * @name apply(list: ArrayLike, fn: (...args: Array) => A): A */ export declare const apply: Apply;