export declare type Scope = Record & { /** scope used by import statement */ import?: Record; }; export declare type RunnerOptions = { /** the code to run */ code: string; /** globals that could be used in code */ scope?: Scope; };