import { MemcacheConnection } from "./connection"; import { MemcacheClient } from "./client"; import { SingleServerEntry, CommandCallback } from "../types"; export declare class MemcacheNode { options: SingleServerEntry; connections: Array; client: MemcacheClient; constructor(client: MemcacheClient, options: SingleServerEntry); doCmd(action: CommandCallback): void | Promise; shutdown(): void; endConnection(conn: MemcacheConnection): void; _connect(server: string): Promise; }