import { ELFSection, ELFSymbolSection, ELFStringSection, ELFRelocationSection } from "./types"; import { Reader } from './reader'; export declare function readSectionHeaderEntries(fh: Reader, sh_off: number | bigint, sh_entsize: number, sh_num: number, bits: number, bigEndian: boolean, eSHStrNdx: number, readSymbolData: boolean): Promise; export declare function isStringSection(section: ELFSection): section is ELFStringSection; export declare function isSymbolSection(section: ELFSection): section is ELFSymbolSection; export declare function isRelocationSection(section: ELFSection): section is ELFRelocationSection;