import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListSessionsRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListSessionsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListSessionsRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListSessionsRequest$outboundSchema: z.ZodType; export declare function listSessionsRequestToJSON(listSessionsRequest: ListSessionsRequest): string; export declare function listSessionsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listsessions.d.ts.map