import * as z from "zod"; export type Security = { statsigApiKey: string; }; /** @internal */ export declare const Security$inboundSchema: z.ZodType; /** @internal */ export type Security$Outbound = { "STATSIG-API-KEY": string; }; /** @internal */ export declare const Security$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 Security$ { /** @deprecated use `Security$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Security$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Security$Outbound` instead. */ type Outbound = Security$Outbound; } //# sourceMappingURL=security.d.ts.map