import { type Static } from "@sinclair/typebox"; declare const prescreenerConfigSchema: import("@sinclair/typebox").TObject<{ topN: import("@sinclair/typebox").TNumber; minDayVolume: import("@sinclair/typebox").TNumber; minLeverage: import("@sinclair/typebox").TNumber; minOpenInterest: import("@sinclair/typebox").TNumber; }>; export type PrescreenerConfig = Static; export type { PrescreenedArtifact, PrescreenedCandidate } from "../artifacts.js"; /** * Infrastructure scanner that ranks liquid instruments and publishes candidates * into the `prescreened` shared artifact for downstream scanners. */ export declare function prescreenerScanner(): import("../index.js").Scanner<{ topN: number; minLeverage: number; minDayVolume: number; minOpenInterest: number; }, Record>; //# sourceMappingURL=prescreener.d.ts.map