import type { Entry, Pool } from "../pool"; import { AttributeType } from "../spec"; import type { Attribute } from "./"; export interface ConstantValueAttribute extends Attribute { type: AttributeType.CONSTANT_VALUE; constIndex: number; constEntry?: Entry; } export declare const readConstantValue: (attr: Attribute, pool: Pool) => ConstantValueAttribute; export declare const writeConstantValue: (attr: ConstantValueAttribute) => Uint8Array;