import { z } from 'zod'; export type ProjectMemberId = string; export declare const ProjectMember: z.ZodObject<{ platformId: z.ZodString; userId: z.ZodString; projectId: z.ZodString; projectRoleId: z.ZodString; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type ProjectMember = z.infer; export declare const ProjectMemberWithUser: z.ZodObject<{ platformId: z.ZodString; userId: z.ZodString; projectId: z.ZodString; projectRoleId: z.ZodString; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; user: z.ZodObject<{ id: z.ZodString; email: z.ZodString; firstName: z.ZodString; status: z.ZodEnum; externalId: z.ZodOptional>; platformId: z.ZodOptional>; platformRole: z.ZodEnum; lastName: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; lastActiveDate: z.ZodOptional, z.ZodString>>>; imageUrl: z.ZodOptional>; }, z.core.$strip>; projectRole: z.ZodObject<{ name: z.ZodString; permissions: z.ZodArray; platformId: z.ZodOptional>; type: z.ZodString; userCount: z.ZodOptional; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; project: z.ZodObject<{ id: z.ZodString; displayName: z.ZodString; }, z.core.$strip>; }, z.core.$strip>; export type ProjectMemberWithUser = z.infer; //# sourceMappingURL=project-member.d.ts.map