import { z } from 'zod/v4'; export declare const InboundWireguardObject: z.ZodObject<{ protocol: z.ZodLiteral<"wireguard">; settings: z.ZodObject<{ secretKey: z.ZodString; peers: z.ZodArray; }, z.core.$strip>>; kernelMode: z.ZodOptional; mtu: z.ZodOptional; }, z.core.$strip>; }, z.core.$strip>; export type InboundWireguardObject = z.infer;