import * as z from "zod"; export type UserInvitesDto = { /** * Role assigned to the invited users. Can be 'Admin', 'Read Only', 'Member', or any custom role name. */ role: string; /** * List of email addresses to send invitations to. */ emails: Array; /** * Optional list of teams that the invited users will be associated with. */ teams?: Array | undefined; }; /** @internal */ export declare const UserInvitesDto$inboundSchema: z.ZodType; /** @internal */ export type UserInvitesDto$Outbound = { role: string; emails: Array; teams?: Array | undefined; }; /** @internal */ export declare const UserInvitesDto$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 UserInvitesDto$ { /** @deprecated use `UserInvitesDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserInvitesDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserInvitesDto$Outbound` instead. */ type Outbound = UserInvitesDto$Outbound; } //# sourceMappingURL=userinvitesdto.d.ts.map