import { z } from "zod"; export declare const accountSchema: z.ZodObject<{ id: z.ZodNumber; privKey: z.ZodString; pubKey: z.ZodString; createdAt: z.ZodNumber; }, "strip", z.ZodTypeAny, { pubKey: string; privKey: string; id: number; createdAt: number; }, { pubKey: string; privKey: string; id: number; createdAt: number; }>; export declare const accountsSchema: z.ZodArray, "many">;