import { RCHProtocol } from "./RCH.type"; export declare namespace FPrinterRCH { type Config = { host: string; }; type Response = { ok: boolean; body?: any; original?: { req: any; res: any; }; }; abstract class Client { private readonly config; constructor(config: Config); getConfig(): Config; abstract executeCommand(commands: RCHProtocol.Commands): Promise; } }