export declare class Candle { readonly timestamp_ms: number; readonly open: string; readonly high: string; readonly low: string; readonly close: string; readonly volume: string; constructor(timestamp_ms: number, open: string, high: string, low: string, close: string, volume: string); }