import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class AggregationType { Values: List>; Name: Value; constructor(properties: AggregationType); } export interface FleetMetricProperties { IndexName?: Value; MetricName: Value; Description?: Value; QueryString?: Value; Period?: Value; QueryVersion?: Value; Unit?: Value; AggregationType?: AggregationType; AggregationField?: Value; Tags?: List; } export default class FleetMetric extends ResourceBase { static AggregationType: typeof AggregationType; constructor(properties: FleetMetricProperties); }