import { z } from 'zod'; import { type APIClient } from '@agentuity/api'; export declare const ProjectExistsRequestSchema: z.ZodObject<{ name: z.ZodString; organization_id: z.ZodString; }, z.core.$strip>; export declare const ProjectExistsResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodBoolean; }, z.core.$strip>], "success">; export type ProjectExistsRequest = z.infer; export type ProjectExistsResponse = z.infer; /** * Check if a project exists by name within an organization * * @param client * @param body * @returns */ export declare function projectExists(client: APIClient, body: ProjectExistsRequest): Promise; //# sourceMappingURL=exists.d.ts.map