import { z } from 'zod';
import { Endpoint } from './common';
declare const pinClockRequestBodySchema: z.ZodObject<{
    timestamp: z.ZodNumber;
}, z.core.$strip>;
type PinClockRequestBody = z.infer<typeof pinClockRequestBodySchema>;
declare const pinClock: Endpoint;
declare const resetClock: Endpoint;
export { pinClockRequestBodySchema, pinClock, resetClock };
export type { PinClockRequestBody };
