import { WsMessage } from '../../../model/common';
import { WebSocketMessageCallback } from '../../../internal/interfaces/websocket';
import { Response } from '../../../internal/interfaces/serializable';
export declare class KlinesEvent implements Response<WsMessage> {
    /**
     * Symbol of the contract, Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220)
     */
    symbol: string;
    /**
     * Start time, open price, close price, high price, low price, Transaction volume(This value is incorrect, please do not use it, we will fix it in subsequent versions), Transaction amount
     */
    candles: Array<string>;
    /**
     * timestamp(ms)
     */
    time: number;
    private constructor();
    /**
     * common response
     */
    commonResponse?: WsMessage;
    setCommonResponse(response: WsMessage): void;
    /**
     * Convert the object to a JSON string.
     */
    toJson(): string;
    /**
     * Create an object from a JSON string.
     */
    static fromJson(input: string): KlinesEvent;
    /**
     * Create an object from Js Object.
     */
    static fromObject(jsonObject: Object): KlinesEvent;
}
export type KlinesEventCallback = (topic: string, subject: string, data: KlinesEvent) => void;
export declare class KlinesEventCallbackWrapper implements WebSocketMessageCallback {
    private callback;
    constructor(callback: KlinesEventCallback);
    onMessage(msg: WsMessage): void;
}
