import { z } from 'zod'; import { APIClient } from '@agentuity/api'; export declare const OrgEnvDataSchema: z.ZodObject<{ id: z.ZodString; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>; export declare const OrgEnvGetResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{ success: z.ZodLiteral; message: z.ZodString; code: z.ZodOptional; }, z.core.$strip>, z.ZodObject<{ success: z.ZodLiteral; data: z.ZodObject<{ id: z.ZodString; env: z.ZodOptional>; secrets: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>], "success">; export declare const OrgEnvGetOptionsSchema: z.ZodObject<{ id: z.ZodString; mask: z.ZodOptional; }, z.core.$strip>; export type OrgEnvGetOptions = z.infer; export type OrgEnvGetResponse = z.infer; export type OrgEnv = z.infer; /** * Get environment variables and secrets for an organization. * Secrets are masked by default unless mask=false is specified. * Note: Unmasked values require admin/owner role. */ export declare function orgEnvGet(client: APIClient, request: OrgEnvGetOptions): Promise; //# sourceMappingURL=env-get.d.ts.map