import { ModelData, Model } from "@kubernetes-models/base"; /** * PodScalableStatus is the observed state of a PodScalable (or at * least our shared portion). */ export interface IPodScalableStatus { "replicas"?: number; } /** * PodScalableStatus is the observed state of a PodScalable (or at * least our shared portion). */ export declare class PodScalableStatus extends Model implements IPodScalableStatus { "replicas"?: number; constructor(data?: ModelData); } export type { IPodScalableStatus as IDevKnativeServingPkgApisAutoscalingV1alpha1PodScalableStatus, PodScalableStatus as DevKnativeServingPkgApisAutoscalingV1alpha1PodScalableStatus };