import { FastifyReply, FastifyRequest } from "fastify"; export declare const pingRequestSchema: { type: string; properties: { jsonrpc: { type: string; enum: string[]; }; id: { type: string; }; method: { type: string; enum: string[]; }; }; required: string[]; }; export declare const pingResponseSchema: { type: string; properties: { jsonrpc: { type: string; }; id: { type: string; }; result: { type: string; additionalProperties: boolean; }; }; required: string[]; }; export declare function pingHandler(): (request: FastifyRequest, reply: FastifyReply) => Promise; //# sourceMappingURL=ping.d.ts.map