import { AttributeType } from "../spec"; import type { Attribute } from "./"; export interface LineNumberTableEntry { startPC: number; lineNumber: number; } export interface LineNumberTableAttribute extends Attribute { type: AttributeType.LINE_NUMBER_TABLE; entries: LineNumberTableEntry[]; } export declare const readLineNumberTable: (attr: Attribute) => LineNumberTableAttribute; export declare const writeLineNumberTable: (attr: LineNumberTableAttribute) => Uint8Array;