import type { PartialTree } from '@uppy/core'; /** * We're interested in all 'checked' leaves of this tree, * but we don't yet know how many files there are inside of each checked folder. * `getNumberOfSelectedFiles()` returns the most intuitive number we can show to the user * in this situation. */ declare const getNumberOfSelectedFiles: (partialTree: PartialTree) => number; export default getNumberOfSelectedFiles; //# sourceMappingURL=getNumberOfSelectedFiles.d.ts.map