import { z } from 'zod';
/**
 * The zod schema for latest finishes.
 *
 * @internal
 */
export declare const _Schema_maps_latest: z.ZodArray<z.ZodObject<{
    timestamp: z.ZodNumber;
    map: z.ZodString;
    name: z.ZodString;
    time: z.ZodNumber;
    server: z.ZodString;
}, z.core.$strip>>;
/**
 * Raw latest finishes data type, inferred from {@link _Schema_maps_latest}
 *
 * @internal
 */
export type _MapsLatest = z.infer<typeof _Schema_maps_latest>;
