import { ModelData, Model } from "@kubernetes-models/base";
/**
 * SemVerPolicy specifies a semantic version policy.
 */
export interface ISemVerPolicy {
    /**
     * Range gives a semver range for the image tag; the highest
     * version within the range that's a tag yields the latest image.
     */
    "range": string;
}
/**
 * SemVerPolicy specifies a semantic version policy.
 */
export declare class SemVerPolicy extends Model<ISemVerPolicy> implements ISemVerPolicy {
    "range": string;
    constructor(data?: ModelData<ISemVerPolicy>);
}
export type { ISemVerPolicy as IComGithubFluxcdImageReflectorControllerApiV1beta2SemVerPolicy, SemVerPolicy as ComGithubFluxcdImageReflectorControllerApiV1beta2SemVerPolicy };
