import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * The platform that the Paze session is being created for. Defaults to `web`. */ export declare const Source: { readonly Web: "web"; readonly Mobile: "mobile"; }; /** * The platform that the Paze session is being created for. Defaults to `web`. */ export type Source = OpenEnum; export type PazeSessionRequest = { /** * The platform that the Paze session is being created for. Defaults to `web`. */ source?: Source | undefined; /** * The domain on which Paze is being loaded. Required when `source` is `web`. */ domainName?: string | null | undefined; }; /** @internal */ export declare const Source$outboundSchema: z.ZodType; /** @internal */ export type PazeSessionRequest$Outbound = { source: string; domain_name?: string | null | undefined; }; /** @internal */ export declare const PazeSessionRequest$outboundSchema: z.ZodType; export declare function pazeSessionRequestToJSON(pazeSessionRequest: PazeSessionRequest): string; //# sourceMappingURL=pazesessionrequest.d.ts.map