import type { Action, ActionConfig, ActionFactory, ActionManifest, ActionResult, HookEvent } from '../types.js'; import type { RuntimeContext } from 'src/types/runtime.js'; export declare class ClosePositionAction implements Action { private config; private context; readonly name: string; readonly actionType: "CLOSE_POSITION"; private decisionEngine; constructor(config: ActionConfig, context: RuntimeContext); private eventCtx; handle(event: HookEvent): Promise; private normalizeSignals; private handleSignals; } export declare const closePositionFactory: ActionFactory; export declare const closePositionManifest: ActionManifest; //# sourceMappingURL=close-position.action.d.ts.map