import { Client } from "@lumeweb/libkernel-universal"; export interface Response { id?: number; error?: string; result: any; } export declare class HandshakeClient extends Client { ready(): Promise; query(method: string, params: any): Promise; } export declare const createClient: (...args: any) => HandshakeClient; //# sourceMappingURL=index.d.ts.map