import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Intern } from "./intern.js"; /** * Interns visible to the authenticated API key. */ export type InternListResponse = { data: Array; /** * True when more interns match the current filters. */ hasMore: boolean; /** * Opaque cursor, present when `has_more` is true. Pass it as `starting_after` to fetch the next page. */ nextCursor?: string | undefined; }; /** @internal */ export declare const InternListResponse$inboundSchema: z.ZodType; export declare function internListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=internlistresponse.d.ts.map