import { Actor } from '@devvit/shared-types/Actor.js'; import type { Config } from '@devvit/shared-types/Config.js'; /** * Dangerously executes untrusted code and returns the Actor class. An Error is * thrown if the code does not adhere to the BundleModule interface. */ export declare function dangerouslyGetBundleActor(code: string): Promise; declare class ConcreteActor extends Actor { constructor(cfg: Config); } /** For typing only, a fake instantiable Actor subclass. */ export type ConcreteActorType = typeof ConcreteActor; export {}; //# sourceMappingURL=BundleModule.d.ts.map