import * as z from "zod"; export type UserContractDto = { /** * The email address of the user. */ email: string; /** * The user's first name. */ firstName: string; /** * The user's last name. */ lastName: string; /** * The user's role, which can be 'Admin', 'Read Only', 'Member', or any custom role name. */ role: string; }; /** @internal */ export declare const UserContractDto$inboundSchema: z.ZodType; /** @internal */ export type UserContractDto$Outbound = { email: string; firstName: string; lastName: string; role: string; }; /** @internal */ export declare const UserContractDto$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 UserContractDto$ { /** @deprecated use `UserContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UserContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UserContractDto$Outbound` instead. */ type Outbound = UserContractDto$Outbound; } //# sourceMappingURL=usercontractdto.d.ts.map