import { z } from '@struktoai/mirage-core/resource/secrets'; import type { ConfigOf, RedactedConfig } from '@struktoai/mirage-core/resource/secrets'; declare const LangfuseConfigSchema: z.ZodObject<{ publicKey: z.ZodString; secretKey: z.ZodString; host: z.ZodOptional; defaultTraceLimit: z.ZodOptional; defaultSearchLimit: z.ZodOptional; defaultFromTimestamp: z.ZodOptional; }, z.core.$strip>; export type LangfuseConfig = ConfigOf; export type LangfuseConfigRedacted = RedactedConfig; export declare function redactLangfuseConfig(config: LangfuseConfig): LangfuseConfigRedacted; export declare function normalizeLangfuseConfig(input: Record): LangfuseConfig; export {}; //# sourceMappingURL=config.d.ts.map