import { DamlLfValueDefinition } from "../model/daml-lf-value-definition.js"; import { DamlLfLexicalScope } from "./daml-lf-lexical-scope.js"; export declare class DamlLfRuntimeFrame { readonly frameId: string; readonly packageId: string; readonly moduleName: string; readonly definition: DamlLfValueDefinition; readonly scope: DamlLfLexicalScope; constructor(init: { frameId: string; packageId: string; moduleName: string; definition: DamlLfValueDefinition; scope?: DamlLfLexicalScope; }); }