import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
import { VcrImageDetail } from "./vcrimagedetail.js";
export type GetRepositoryImageRequest = {
    /**
     * Project ID. Missing or empty values return HTTP 400.
     */
    projectId: string;
    idOrName: string;
    /**
     * The internal image id (`image_...`) or the image manifest digest (`sha256:...`).
     */
    imageIdOrDigest: string;
    /**
     * The Team identifier to perform the request on behalf of.
     */
    teamId?: string | undefined;
    /**
     * The Team slug to perform the request on behalf of.
     */
    slug?: string | undefined;
};
export type GetRepositoryImageResponseBody = {
    /**
     * A single image with its tags, status and resolved Dockerfile layer history.
     */
    image: VcrImageDetail;
};
/** @internal */
export type GetRepositoryImageRequest$Outbound = {
    projectId: string;
    idOrName: string;
    imageIdOrDigest: string;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const GetRepositoryImageRequest$outboundSchema: z.ZodType<GetRepositoryImageRequest$Outbound, z.ZodTypeDef, GetRepositoryImageRequest>;
export declare function getRepositoryImageRequestToJSON(getRepositoryImageRequest: GetRepositoryImageRequest): string;
/** @internal */
export declare const GetRepositoryImageResponseBody$inboundSchema: z.ZodType<GetRepositoryImageResponseBody, z.ZodTypeDef, unknown>;
export declare function getRepositoryImageResponseBodyFromJSON(jsonString: string): SafeParseResult<GetRepositoryImageResponseBody, SDKValidationError>;
//# sourceMappingURL=getrepositoryimageop.d.ts.map