import { AbstractSubscriptionMetricUpdate } from "./AbstractSubscriptionMetricUpdate";
declare class SubscriptionMetricCreate extends AbstractSubscriptionMetricUpdate {
    /**
    * The type of the metric.
    */
    'type': number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { SubscriptionMetricCreate };
