import { z } from 'zod'; import { type APIClient } from '@agentuity/api'; export declare const ProjectDeleteRequestSchema: z.ZodObject<{ ids: z.ZodArray; }, z.core.$strip>; export declare const ProjectDeleteResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodArray; }, z.core.$strip>], "success">; export declare function projectDelete(client: APIClient, ...ids: string[]): Promise; //# sourceMappingURL=delete.d.ts.map