import { z } from "zod";
export declare const ZPing: z.ZodObject<{
    type: z.ZodLiteral<"ping">;
    message: z.ZodOptional<z.ZodString>;
    time: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    type?: "ping";
    message?: string;
    time?: number;
}, {
    type?: "ping";
    message?: string;
    time?: number;
}>;
export type Ping = z.infer<typeof ZPing>;
