import * as z from "zod"; import { CodeLocation, CodeLocation$Outbound } from "./codelocation.js"; export type ConsoleLog = { timestamp: number; text: string; type: string; tabIndex: number; args?: Array | undefined; url?: string | undefined; location?: CodeLocation | undefined; }; /** @internal */ export declare const ConsoleLog$inboundSchema: z.ZodType; /** @internal */ export type ConsoleLog$Outbound = { timestamp: number; text: string; type: string; tabIndex: number; args?: Array | undefined; url?: string | undefined; location?: CodeLocation$Outbound | undefined; }; /** @internal */ export declare const ConsoleLog$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 ConsoleLog$ { /** @deprecated use `ConsoleLog$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleLog$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleLog$Outbound` instead. */ type Outbound = ConsoleLog$Outbound; } //# sourceMappingURL=consolelog.d.ts.map