import { Runtime } from "./Runtime";
declare class Bag {
    runtime: Runtime;
    throwed: any;
    constructor(runtime: Runtime);
    addTrace(): void;
}
export { Bag };
