import { z } from 'zod';
export declare const rsaKeysSchema: z.ZodObject<{
    publicKey: z.ZodString;
    privateKey: z.ZodString;
}, z.core.$strip>;
export type RSAKeys = z.infer<typeof rsaKeysSchema>;
