import * as z from "zod"; import { APIKeyV2, APIKeyV2$Outbound } from "./apikeyv2.js"; import { UserV1, UserV1$Outbound } from "./userv1.js"; export type ActorV2 = { apiKey?: APIKeyV2 | undefined; user?: UserV1 | undefined; }; /** @internal */ export declare const ActorV2$inboundSchema: z.ZodType; /** @internal */ export type ActorV2$Outbound = { api_key?: APIKeyV2$Outbound | undefined; user?: UserV1$Outbound | undefined; }; /** @internal */ export declare const ActorV2$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 ActorV2$ { /** @deprecated use `ActorV2$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActorV2$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActorV2$Outbound` instead. */ type Outbound = ActorV2$Outbound; } //# sourceMappingURL=actorv2.d.ts.map