import { Info } from './Info';
import { ExceptionInfo } from './ExceptionInfo';
import { Traits } from './Traits';
import { IndentingWriter } from '@awayfl/swf-loader';
export declare class MethodBodyInfo extends Info {
    maxStack: number;
    localCount: number;
    initScopeDepth: number;
    maxScopeDepth: number;
    code: Uint8Array;
    catchBlocks: ExceptionInfo[];
    traits: Traits;
    activationPrototype: Object;
    constructor(maxStack: number, localCount: number, initScopeDepth: number, maxScopeDepth: number, code: Uint8Array, catchBlocks: ExceptionInfo[], traits: Traits);
    trace(writer: IndentingWriter): void;
}
//# sourceMappingURL=MethodBodyInfo.d.ts.map