import { z } from 'zod'; export declare const ProjectMemberApiKeyAuthFlowRequestSchema: z.ZodObject<{ projectId: z.ZodString; userId: z.ZodString; role: z.ZodNullable>; readOnly: z.ZodBoolean; apiKeyId: z.ZodString; }, "strip", z.ZodTypeAny, { userId: string; projectId: string; apiKeyId: string; role: "admin" | "editor" | "viewer" | null; readOnly: boolean; }, { userId: string; projectId: string; apiKeyId: string; role: "admin" | "editor" | "viewer" | null; readOnly: boolean; }>; export type ProjectMemberApiKeyAuthFlowRequest = z.infer; //# sourceMappingURL=projectMemberApiKeyAuthFlowDto.d.ts.map