import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const OrgEnvDeleteRequestSchema: z.ZodObject<{ id: z.ZodString; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>; export declare const OrgEnvDeleteResponseSchema: 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 OrgEnvDeleteRequest = z.infer; export type OrgEnvDeleteResponse = z.infer; /** * Delete environment variables and/or secrets from an organization. * Provide arrays of keys to delete. * Requires admin/owner role. */ export declare function orgEnvDelete(client: APIClient, request: OrgEnvDeleteRequest): Promise; //# sourceMappingURL=env-delete.d.ts.map