import type { Pool, UTF8Entry } from "../pool"; import { AttributeType } from "../spec"; import type { Attribute } from "./"; export interface SourceFileAttribute extends Attribute { type: AttributeType.SOURCE_FILE; sourceFileIndex: number; sourceFileEntry?: UTF8Entry; } export declare const readSourceFile: (attr: Attribute, pool: Pool) => SourceFileAttribute; export declare const writeSourceFile: (attr: SourceFileAttribute) => Uint8Array;