import type express from 'express'; import { Payload } from './index.js'; import type { ClientInterface, Method } from './ireceiver.js'; export declare class DebugClientInterface implements ClientInterface { sendPayload(payload: Payload): Promise; registerRoute(method: Method, route: string, _fn: (req: express.Request, res: express.Response) => any): void; registerGuide(html: string): number; }