import type { NormalizeOptions, PropertiesNode } from './nodes.js'; /** * Format a set of property nodes into normalized output. * * @param nodes - All nodes from the parsed document. * @param hasBom - Whether the original content had a BOM. * @param eolCharacter - The detected EOL character. * @param options - Normalization options. * * @returns The normalized `.properties` file content. */ export declare const formatNormalized: (nodes: PropertiesNode[], hasBom: boolean, eolCharacter: string, options: NormalizeOptions) => string;