import { ActionConfigInterface } from "../../../types/ActionConfigInterface"; import { AbstractFnTarget } from "./AbstractFnTarget"; import { RunOptions } from "../../../runOptions/RunOptions"; import { SyncRunTargetInterface } from "../../../runTarget/SyncRunTargetInterface"; import { FnRunResultInterface } from "../runResult/FnRunResultInterface"; export declare class SyncFnTarget extends AbstractFnTarget implements SyncRunTargetInterface { static create(fn: () => R, actionConfig?: ActionConfigInterface): SyncFnTarget; static create(fn: () => R, actionYmlPath?: string): SyncFnTarget; isAsync: false; run(options: RunOptions): FnRunResultInterface; clone(): this; } //# sourceMappingURL=SyncFnTarget.d.ts.map