#! bin/node
/**
 * Purges unused CSS based on HTML content.
 *
 * @param cssFilePath - Path to the CSS file generated by the build.
 * @param htmlDirPath - Directory containing the generated HTML files.
 * @param outputCssFilePath - Path to save the purged CSS.
 */
declare const purgeCss: (cssFilePath: string, htmlDirPath: string, outputCssFilePath: string) => Promise<void>;
export default purgeCss;
