///
declare type KeyValue = {
[key: string]: any;
};
export declare class DnsTxt {
private binary;
constructor(opts?: KeyValue);
encode(data?: KeyValue): Buffer[];
decode(buffer: Buffer): KeyValue;
decodeAll(buffer: Array): KeyValue;
}
export default DnsTxt;