/**
 * @packageDocumentation
 *
 * Rename CSS esbuild plugin.
 */
import type { Plugin } from 'esbuild';
/**
 * Plugin that renames the CSS file to the correct name.
 *
 * @param distFolder - The folder to rename the CSS file in.
 * @returns The plugin.
 */
export declare function renameCssPlugin(distFolder: string): Plugin;
