import { ActionConfigStoreOptional } from "../../../runOptions/ActionConfigStore"; import { FnRunMilieu } from "../runMilieu/FnRunMilieu"; import { RunOptions } from "../../../runOptions/RunOptions"; export declare abstract class AbstractFnTarget { readonly fn: () => R; readonly actionConfig: ActionConfigStoreOptional; readonly actionYmlPath: string | undefined; protected constructor(fn: () => R, actionConfig: ActionConfigStoreOptional, actionYmlPath: string | undefined); abstract clone(): this; protected createMilieu(options: RunOptions): FnRunMilieu; } //# sourceMappingURL=AbstractFnTarget.d.ts.map