/** * @copyright Sister Software * @license AGPL-3.0 * @author Teffen Ellis, et al. * * Environment variables the corpus build and its acquisition tooling read. */ import { z } from "zod"; /** * Corpus build settings. */ export declare const PublicCorpusEnvSchema: z.ZodObject<{ MAILWOMAN_RESUME: z.ZodOptional; }, z.core.$strip>; /** * Credentials the corpus acquisition and golden-expansion tooling send. Never log their values. */ export declare const PrivateCorpusEnvSchema: z.ZodObject<{ OA_BATCH_TOKEN: z.ZodOptional; DEEPSEEK_API_KEY: z.ZodOptional; ANTHROPIC_API_KEY: z.ZodOptional; }, z.core.$strip>; /** * Live corpus settings over core's, sharing core's getters and cached values. */ export declare const $public: Record & { MAILWOMAN_DATA_ROOT: string; MAILWOMAN_CONFIG_ROOT: string; MAILWOMAN_CACHE_ROOT: string; MAILWOMAN_TEMP_ROOT: string; MAILWOMAN_COARSE_PLACER_DIR?: string | undefined; MAILWOMAN_DOCS_URL?: string | undefined; MAILWOMAN_LICENSE_KEY?: string | undefined; MAILWOMAN_LICENSE_URL?: string | undefined; } & { MAILWOMAN_RESUME?: string | undefined; }; /** * Live corpus credentials over core's. Never log their values. */ export declare const $private: Record & Record & { OA_BATCH_TOKEN?: string | undefined; DEEPSEEK_API_KEY?: string | undefined; ANTHROPIC_API_KEY?: string | undefined; }; //# sourceMappingURL=env.d.ts.map