/**
 * Given path of directory, returns array of all file paths within directory
 */
export declare function listFilePaths(dirPath: string): string[];
/**
 * Helper for batching requests
 */
export declare function chunkArray(array: string[], chunkSize: number): AsyncGenerator<string[], void, unknown>;
