/** * Sample Signal fixtures for each built-in scanner type. * * Use the factory functions to create realistic Signal objects for testing * downstream consumers (actions, hooks, notifications). * * Each factory accepts an optional `overrides` partial to tweak individual fields. */ import type { Signal } from "../../types.js"; /** Creates a momentum breakout signal (from the momentum scanner). */ export declare function createMomentumSignal(overrides?: Partial): Signal; /** Creates a short-side momentum signal. */ export declare function createMomentumShortSignal(overrides?: Partial): Signal; /** Creates an emerging mover signal (from the emerging-movers scanner). */ export declare function createEmergingMoverSignal(overrides?: Partial): Signal; /** Creates a weak/borderline signal useful for threshold testing. */ export declare function createWeakSignal(overrides?: Partial): Signal; //# sourceMappingURL=signals.d.ts.map