import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Report } from "./report.js"; export type Reports = { /** * A list of items returned for this request. */ items: Array; /** * The number of items for this page. */ limit: number; /** * The cursor pointing at the next page of items. */ nextCursor?: string | null | undefined; /** * The cursor pointing at the previous page of items. */ previousCursor?: string | null | undefined; }; /** @internal */ export declare const Reports$inboundSchema: z.ZodType; export declare function reportsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reports.d.ts.map