import { z } from 'zod'; export declare const publicKeysSchema: z.ZodObject<{ node_encryption_pk: z.ZodOptional; node_signature_pk: z.ZodOptional; api_v2_key: z.ZodOptional; }, "strip", z.ZodTypeAny, { node_encryption_pk?: string | undefined; node_signature_pk?: string | undefined; api_v2_key?: string | undefined; }, { node_encryption_pk?: string | undefined; node_signature_pk?: string | undefined; api_v2_key?: string | undefined; }>; export type PublicKeysFormSchema = z.infer;