/** * Decorator that automatically chunks array arguments and aggregates results * @param chunkSize - The maximum size of each chunk * @param chunkArgIndex - The index of the argument to chunk * @returns Method decorator */ export declare function chunked(chunkSize: number, chunkArgIndex?: number): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;