import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * Batches promises and returns a promise that resolves to an array of results * @param {UmbControllerHost} host - The host to use for the request and where notifications will be shown * @param {Array>} chunks - The array of chunks to process * @param {(chunk: Array) => Promise} callback - The function to call for each chunk * @returns {Promise[]>} - A promise that resolves to an array of results */ export declare function batchTryExecute(host: UmbControllerHost, chunks: Array>, callback: (chunk: Array) => Promise): Promise[]>;