import { IDevKnativePkgApisDuckV1Status } from "../../duck.knative.dev/v1/Status.js"; import { IDevKnativePkgApisDuckV1Conditions } from "../../duck.knative.dev/v1/Conditions.js"; import { ModelData, Model } from "@kubernetes-models/base"; /** * ImageStatus communicates the observed state of the Image (from the controller). */ export interface IImageStatus extends IDevKnativePkgApisDuckV1Status { } /** * ImageStatus communicates the observed state of the Image (from the controller). */ export declare class ImageStatus extends Model implements IImageStatus { "annotations"?: { [key: string]: string; }; "conditions"?: IDevKnativePkgApisDuckV1Conditions; "observedGeneration"?: number; constructor(data?: ModelData); } export type { IImageStatus as IDevKnativeCachingPkgApisCachingV1alpha1ImageStatus, ImageStatus as DevKnativeCachingPkgApisCachingV1alpha1ImageStatus };