import { UndefinedValue, Value, type Arguments } from '../value.mts'; import { type FunctionObject, type ValueEvaluator } from '#self'; export declare function CreateDynamicFunction(constructor: FunctionObject, newTarget: FunctionObject | UndefinedValue, kind: 'normal' | 'generator' | 'async' | 'asyncGenerator', parameterArgs: Arguments, bodyArg: Value): ValueEvaluator; //# sourceMappingURL=CreateDynamicFunction.d.mts.map