export declare function sendTelegramMessage(text: string, botToken: string, chatId: string): Promise<boolean>;
export declare function sendTestMessage(botToken: string, chatId: string): Promise<{
    success: boolean;
    error?: string;
}>;
export declare function formatSignalMessage(data: {
    symbol: string;
    direction: 'LONG' | 'SHORT';
    score: number;
    price: number;
    stopLoss?: number;
    takeProfit?: number;
    criticalDecision: string;
}): string;
export declare function formatTradeClosedMessage(data: {
    symbol: string;
    direction: string;
    result: 'WIN' | 'LOSS';
    pnlPercent: number;
    entryPrice: number;
    exitPrice: number;
}): string;
//# sourceMappingURL=telegram.d.ts.map