import Client from './hdc/Client';
interface Options {
    host?: string;
    port?: number;
    bin?: string;
}
export default class Hdc {
    static createClient(options?: Options): Client;
}
export {};
