import type { BotConfig } from "./config.js"; export interface Preset { name: string; description: string; strategy: "grid" | "dca" | "funding-arb"; risk: "low" | "medium" | "high"; buildConfig: (exchange: string, symbol: string) => BotConfig; } export declare const PRESETS: Preset[]; export declare function getPreset(name: string): Preset | undefined; export declare function getPresetsByStrategy(strategy: string): Preset[];