import * as z from "zod"; export type TestContextSnapshot = { env: { [k: string]: any; }; }; /** @internal */ export declare const TestContextSnapshot$inboundSchema: z.ZodType; /** @internal */ export type TestContextSnapshot$Outbound = { env: { [k: string]: any; }; }; /** @internal */ export declare const TestContextSnapshot$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TestContextSnapshot$ { /** @deprecated use `TestContextSnapshot$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestContextSnapshot$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestContextSnapshot$Outbound` instead. */ type Outbound = TestContextSnapshot$Outbound; } //# sourceMappingURL=testcontextsnapshot.d.ts.map