import { z } from 'zod'; import { type APIClient } from '@agentuity/api'; import type { Project } from './get.ts'; export declare const ProjectEnvUpdateRequestSchema: z.ZodObject<{ id: z.ZodString; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>; export declare const ProjectEnvUpdateResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodOptional; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>>; }, z.core.$strip>], "success">; type ProjectEnvUpdateRequest = z.infer; /** * Update environment variables and/or secrets for a project. * This will merge the provided env/secrets with existing values. * Keys starting with 'AGENTUITY_' should be filtered out before calling this function. */ export declare function projectEnvUpdate(client: APIClient, request: ProjectEnvUpdateRequest): Promise; export {}; //# sourceMappingURL=env-update.d.ts.map