import type { ClassEntry, Pool } from "../pool"; import { AttributeType } from "../spec"; import type { Attribute } from "./"; export interface ExceptionEntry { index: number; entry?: ClassEntry; } export interface ExceptionsAttribute extends Attribute { type: AttributeType.EXCEPTIONS; entries: ExceptionEntry[]; } export declare const readExceptions: (attr: Attribute, pool: Pool) => ExceptionsAttribute; export declare const writeExceptions: (attr: ExceptionsAttribute) => Uint8Array;