import { IComGithubFluxcdNotificationControllerApiV1beta1Alert } from "./Alert.js";
import { IIoK8sApimachineryPkgApisMetaV1ListMeta } from "@kubernetes-models/apimachinery/apis/meta/v1/ListMeta";
import { ModelData, TypeMeta, Model } from "@kubernetes-models/base";
/**
 * AlertList contains a list of Alert
 */
export interface IAlertList extends TypeMeta {
    "apiVersion": "notification.toolkit.fluxcd.io/v1beta1";
    "items": Array<IComGithubFluxcdNotificationControllerApiV1beta1Alert>;
    "kind": "AlertList";
    "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
}
/**
 * AlertList contains a list of Alert
 */
export declare class AlertList extends Model<IAlertList> implements IAlertList {
    "apiVersion": "notification.toolkit.fluxcd.io/v1beta1";
    "items": Array<IComGithubFluxcdNotificationControllerApiV1beta1Alert>;
    "kind": "AlertList";
    "metadata"?: IIoK8sApimachineryPkgApisMetaV1ListMeta;
    static apiVersion: IAlertList["apiVersion"];
    static kind: IAlertList["kind"];
    static is: import("@kubernetes-models/base").TypeMetaGuard<IAlertList>;
    constructor(data?: ModelData<IAlertList>);
}
export type { IAlertList as IComGithubFluxcdNotificationControllerApiV1beta1AlertList, AlertList as ComGithubFluxcdNotificationControllerApiV1beta1AlertList };
