SignedKey: ZodObject<{
environment: ZodUnion<[ZodLiteral<"development">, ZodLiteral<"staging">, ZodLiteral<"production">]>;
expired: ZodBoolean;
handle: ZodString;
publicKey: ZodEffects<ZodString, string, string>;
selfSignature: ZodEffects<ZodString, string, string>;
type: ZodLiteral<"ed25519">;
}, "strip", ZodTypeAny, {
environment: "development" | "staging" | "production";
expired: boolean;
handle: string;
publicKey: string;
selfSignature: string;
type: "ed25519";
}, {
environment: "development" | "staging" | "production";
expired: boolean;
handle: string;
publicKey: string;
selfSignature: string;
type: "ed25519";
}> = ...