import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js';
export type { MarketDataEntry } from './marketData.ts';
export interface VerifiedOrder {
    clOrdID: string;
    handlInst: string;
    quantity: number;
    price: number;
    ordType: string;
    side: string;
    symbol: string;
    timeInForce: string;
}
export type ToolHandler = (args: any) => Promise<CallToolResult>;
export interface ToolHandlers {
    [key: string]: ToolHandler;
}
