import { CrosshairMode, LineStyle } from "lightweight-charts"; export declare const BASE_URL = "https://api.binance.com/api/v3/klines?"; export declare const WS_URL = "wss://stream.binance.com:9443/ws"; export declare const condleStickDefaultConfig: { upColor: string; downColor: string; borderDownColor: string; borderUpColor: string; wickDownColor: string; wickUpColor: string; }; export declare const histogramDefaultConfig: { base: number; lineWidth: number; priceFormat: { type: string; }; overlay: boolean; scaleMargins: { top: number; bottom: number; }; }; export declare const defaultChartLayout: { layout: { backgroundColor: string; textColor: string; }; grid: { vertLines: { color: string; style: LineStyle; }; horzLines: { color: string; style: LineStyle; }; }; crosshair: { mode: CrosshairMode; }; leftPriceScale: { borderColor: string; }; rightPriceScale: { borderColor: string; }; overlayPriceScales: { borderColor: string; }; timeScale: { borderColor: string; timeVisible: boolean; secondsVisible: boolean; }; };