import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const OrgEnvUpdateRequestSchema: z.ZodObject<{ id: z.ZodString; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>; export declare const OrgEnvUpdateResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; }, z.core.$strip>], "success">; export type OrgEnvUpdateRequest = z.infer; export type OrgEnvUpdateResponse = z.infer; /** * Update environment variables and/or secrets for an organization. * This will merge the provided env/secrets with existing values. * Requires admin/owner role. * Keys starting with 'AGENTUITY_' (except AGENTUITY_PUBLIC_) are filtered out. */ export declare function orgEnvUpdate(client: APIClient, request: OrgEnvUpdateRequest): Promise; //# sourceMappingURL=env-update.d.ts.map