import * as z from "zod"; export type TargetAppDto = { /** * id of target app */ id?: string | undefined; /** * name of the target app */ name: string; }; /** @internal */ export declare const TargetAppDto$inboundSchema: z.ZodType; /** @internal */ export type TargetAppDto$Outbound = { id?: string | undefined; name: string; }; /** @internal */ export declare const TargetAppDto$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TargetAppDto$ { /** @deprecated use `TargetAppDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TargetAppDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TargetAppDto$Outbound` instead. */ type Outbound = TargetAppDto$Outbound; } //# sourceMappingURL=targetappdto.d.ts.map