import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Attempt, Attempt$Outbound } from "./attempt.js"; import { SeekPagination, SeekPagination$Outbound } from "./seekpagination.js"; /** * Paginated list of attempts. */ export type AttemptPaginatedResult = { /** * Array of attempt objects. */ models?: Array | undefined; /** * Cursor-based pagination metadata for list responses. */ pagination?: SeekPagination | undefined; }; /** @internal */ export declare const AttemptPaginatedResult$inboundSchema: z.ZodType; /** @internal */ export type AttemptPaginatedResult$Outbound = { models?: Array | undefined; pagination?: SeekPagination$Outbound | undefined; }; /** @internal */ export declare const AttemptPaginatedResult$outboundSchema: z.ZodType; export declare function attemptPaginatedResultToJSON(attemptPaginatedResult: AttemptPaginatedResult): string; export declare function attemptPaginatedResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=attemptpaginatedresult.d.ts.map