import { MeterBase, MeterBaseOptions } from "./MeterBase"; export declare type DCMeterOptions = MeterBaseOptions; /** * DCMeter gets the raw value of the input signal at the current time. * * @example * var meter = new DCMeter(); * var signal = new Tone.Signal().open(); * //connect signal to the meter * signal.connect(meter); * //the current level of the signal * var level = meter.getValue(); * @category Component */ export declare class DCMeter extends MeterBase { readonly name: string; constructor(options?: Partial); /** * Get the signal value of the incoming signal */ getValue(): number; }