/**
 * Webpack file loader for `.properties` files. Also compatible with Rspack.
 *
 * @param content - The content of a `.properties` file.
 *
 * @returns A CommonJS module string exporting the parsed key-value pairs.
 */
declare const webpackLoader: (content: string) => string;
export default webpackLoader;

// Enables type recognition for direct `.properties` file imports.
import '../properties-file.d.ts'
