import { ELFOpenResult } from './types'; import { ELF } from './types'; /** * Print debug information for an ELF file, similar to readelf or objdump. * @param {ELF | ELFOpenResult} file the ELF file data to print debug info for. * @returns {string} Debug outpt. */ export declare function debug(elf_: ELF | ELFOpenResult): string;