import { CreationEntityState } from "./CreationEntityState";
import { SubscriptionMetricType } from "./SubscriptionMetricType";
declare class SubscriptionMetric {
    /**
    * The localized description of the metric that is displayed to the customer.
    */
    'description'?: {
        [key: string]: string;
    };
    /**
    * A unique identifier for the object.
    */
    'id'?: number;
    /**
    * The ID of the space this object belongs to.
    */
    'linkedSpaceId'?: number;
    /**
    * The localized name of the metric that is displayed to the customer.
    */
    'name'?: {
        [key: string]: string;
    };
    /**
    * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
    */
    'plannedPurgeDate'?: Date;
    /**
    * The object's current state.
    */
    'state'?: CreationEntityState;
    /**
    * The type of the metric.
    */
    'type'?: SubscriptionMetricType;
    /**
    * The version is used for optimistic locking and incremented whenever the object is updated.
    */
    'version'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { SubscriptionMetric };
