export function sortZoneRecords(a: any, b: any): number;
export function dnsFullName(name: any): any;
export function dnsRecordTypeForAddressFamily(family: any): "A" | "AAAA";
export function DNSRecord(key: any, type: any, ...values: any[]): {
    type: any;
    key: any;
    values: any[];
    toString: (maxKeyLength?: number, ttl?: string) => string;
};
export function dnsFormatParameters(parameters: any): string;
export function dnsMergeParameters(a: any, b: any): {
    [k: string]: Set<any>;
};
export function dnsPriority(priority: any): number;
