import { ModelData, Model } from "@kubernetes-models/base";
/**
 * ImageRef represents an image reference.
 */
export interface IImageRef {
    /**
     * Digest is the image's digest.
     */
    "digest"?: string;
    /**
     * Name is the bare image's name.
     */
    "name": string;
    /**
     * Tag is the image's tag.
     */
    "tag": string;
}
/**
 * ImageRef represents an image reference.
 */
export declare class ImageRef extends Model<IImageRef> implements IImageRef {
    "digest"?: string;
    "name": string;
    "tag": string;
    constructor(data?: ModelData<IImageRef>);
}
export type { IImageRef as IComGithubFluxcdImageAutomationControllerApiV1beta2ImageRef, ImageRef as ComGithubFluxcdImageAutomationControllerApiV1beta2ImageRef };
