import { ModelData, Model } from "@kubernetes-models/base";
/**
 * PreferredDuringSchedulingIgnoredDuringExecution defines the weight of the anti-affinity injection
 */
export interface IPreferredDuringSchedulingIgnoredDuringExecution {
    /**
     * Weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
     */
    "weight": number;
}
/**
 * PreferredDuringSchedulingIgnoredDuringExecution defines the weight of the anti-affinity injection
 */
export declare class PreferredDuringSchedulingIgnoredDuringExecution extends Model<IPreferredDuringSchedulingIgnoredDuringExecution> implements IPreferredDuringSchedulingIgnoredDuringExecution {
    "weight": number;
    constructor(data?: ModelData<IPreferredDuringSchedulingIgnoredDuringExecution>);
}
export type { IPreferredDuringSchedulingIgnoredDuringExecution as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PreferredDuringSchedulingIgnoredDuringExecution, PreferredDuringSchedulingIgnoredDuringExecution as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1PreferredDuringSchedulingIgnoredDuringExecution };
