/**
 * Data about a metric.
 */
export default class MetricResult {
    value: number;
    unit: string;
    constructor(value: number, unit: string);
    /**
     * @returns The value of the metric
     */
    getValue(): number;
    /**
     * @returns The unit of the metric value
     */
    getUnit(): string;
}
//# sourceMappingURL=MetricResult.d.ts.map