import { SimpleAdif } from './simple-adif';
/**
 * A class for formatting objects into ADIF.
 */
export declare class AdifFormatter {
    private readonly obj;
    /**
     * Format the given object into an ADIF string.
     */
    static formatAdi(obj: SimpleAdif): string;
    private constructor();
    private format;
    private static formatTags;
    private static prepReturn;
}
