import { IIoK8sApimachineryPkgApisMetaV1Condition } from "@kubernetes-models/apimachinery/apis/meta/v1/Condition";
import { ModelData, Model } from "@kubernetes-models/base";
/**
 * AlertStatus defines the observed state of Alert
 */
export interface IAlertStatus {
    "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
    /**
     * ObservedGeneration is the last observed generation.
     */
    "observedGeneration"?: number;
}
/**
 * AlertStatus defines the observed state of Alert
 */
export declare class AlertStatus extends Model<IAlertStatus> implements IAlertStatus {
    "conditions"?: Array<IIoK8sApimachineryPkgApisMetaV1Condition>;
    "observedGeneration"?: number;
    constructor(data?: ModelData<IAlertStatus>);
}
export type { IAlertStatus as IComGithubFluxcdNotificationControllerApiV1beta1AlertStatus, AlertStatus as ComGithubFluxcdNotificationControllerApiV1beta1AlertStatus };
