import * as z from "zod"; import { ManualPageAssertion, ManualPageAssertion$Outbound } from "./manualpageassertion.js"; export type PageAssertionCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "PAGE_CHECK" | undefined; assertion: ManualPageAssertion; /** * url or url regex for the iframe */ iframeUrl?: string | undefined; /** * max seconds to wait for the assertion to be true */ timeout?: number | undefined; }; /** @internal */ export declare const PageAssertionCommand$inboundSchema: z.ZodType; /** @internal */ export type PageAssertionCommand$Outbound = { thoughts?: string | undefined; id: string; type: "PAGE_CHECK"; assertion: ManualPageAssertion$Outbound; iframeUrl?: string | undefined; timeout?: number | undefined; }; /** @internal */ export declare const PageAssertionCommand$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 PageAssertionCommand$ { /** @deprecated use `PageAssertionCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PageAssertionCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PageAssertionCommand$Outbound` instead. */ type Outbound = PageAssertionCommand$Outbound; } //# sourceMappingURL=pageassertioncommand.d.ts.map