import { LodashMethodDecorator } from './factory'; /** * Creates a function that invokes func, with up to n arguments, ignoring any additional arguments. * @param {number} n The arity cap. * @example * * class MyClass { * @Ary(1) * fn(...args) { * return args; * } * } * * const myClass = new MyClass(); * * myClass.fn(1, 2, 3, 4); // => [ 1 ] */ export declare const Ary: (n: number) => LodashMethodDecorator; export { Ary as ary }; export default Ary;