import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
import { VcrImageListItem } from "./vcrimagelistitem.js";
/**
 * A paginated list of images for a repository.
 */
export type VcrImageList = {
    images: Array<VcrImageListItem>;
    /**
     * Cursor to fetch the next page of results, when more are available.
     */
    nextCursor?: string | undefined;
};
/** @internal */
export declare const VcrImageList$inboundSchema: z.ZodType<VcrImageList, z.ZodTypeDef, unknown>;
export declare function vcrImageListFromJSON(jsonString: string): SafeParseResult<VcrImageList, SDKValidationError>;
//# sourceMappingURL=vcrimagelist.d.ts.map