import * as streams from "./stream";
import * as https from "./http";
import * as errors from "./errors";
export default class Coinex {
    apiKey?: string | null;
    apiSecret?: string | null;
    errors: typeof errors;
    stream: typeof streams & {
        apiKey?: string | null;
        apiSecret?: string | null;
        connect?: (credentionals: {
            apiKey: string | null;
            apiSecret: string | null;
        }) => void;
    };
    http: typeof https & {
        apiKey?: string;
        apiSecret?: string;
    };
    constructor(apiKey?: string, apiSecret?: string);
}
