import * as z from "zod"; export type BulkAssignConfigTargetAppDto = { /** * target app ids */ targetApps: Array; /** * Gate IDs to assign to target app(s) */ gates?: Array | undefined; /** * Dynamic Config IDs to assign to target app(s) */ dynamicConfigs?: Array | undefined; /** * Experiment IDs to assign to target app(s) */ experiments?: Array | undefined; }; /** @internal */ export declare const BulkAssignConfigTargetAppDto$inboundSchema: z.ZodType; /** @internal */ export type BulkAssignConfigTargetAppDto$Outbound = { targetApps: Array; gates?: Array | undefined; dynamicConfigs?: Array | undefined; experiments?: Array | undefined; }; /** @internal */ export declare const BulkAssignConfigTargetAppDto$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 BulkAssignConfigTargetAppDto$ { /** @deprecated use `BulkAssignConfigTargetAppDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BulkAssignConfigTargetAppDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BulkAssignConfigTargetAppDto$Outbound` instead. */ type Outbound = BulkAssignConfigTargetAppDto$Outbound; } //# sourceMappingURL=bulkassignconfigtargetappdto.d.ts.map