import { Metric } from "../Metric"; export interface FlushMetric extends Metric { flush(): Metric; } export declare function isFlushMetric(metric: Metric): metric is FlushMetric;