/** * This module provides a complete pipeline for processing SVG files: * 1. Loads all SVGs from a source directory. * 2. Converts any stroke-based paths to fill-based paths. * 3. Saves the processed SVG files to a new, unique temporary directory. */ /** * ================================================================= * MAIN PIPELINE FUNCTION * ================================================================= * * Executes the full process: * 1. Loads all SVGs from `srcDir`. * 2. Converts strokes to fills on all of them. * 3. Writes the new files to a unique temporary directory. * * @param srcDir The source directory containing your .svg files. * @returns The absolute path to the temporary directory * containing the processed files. */ export declare function processSvgDirectory(srcDir: string): Promise;