import * as z from "zod"; export type UpdateTargetAppDto = { /** * name of the target app */ name?: string | undefined; /** * a description of the target app */ description?: string | undefined; }; /** @internal */ export declare const UpdateTargetAppDto$inboundSchema: z.ZodType; /** @internal */ export type UpdateTargetAppDto$Outbound = { name?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const UpdateTargetAppDto$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 UpdateTargetAppDto$ { /** @deprecated use `UpdateTargetAppDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateTargetAppDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateTargetAppDto$Outbound` instead. */ type Outbound = UpdateTargetAppDto$Outbound; } //# sourceMappingURL=updatetargetappdto.d.ts.map