import type { DnsResponse } from './types';
export declare function formatOutput(responses: DnsResponse[], options: OutputOptions): string;
export declare interface OutputOptions {
  json: boolean
  short: boolean
  showDuration?: number
  colors: {
    enabled: boolean
  }
  rawSeconds: boolean
}
