import { type KeyFormatter } from './key-formatter.js';
export declare class ConfigKeyFormatter implements KeyFormatter {
    private static _instance;
    readonly separator: string;
    private constructor();
    normalize(key: string): string;
    split(key: string): string[];
    join(...parts: string[]): string;
    static instance(): KeyFormatter;
}
