import { UIInstanceManager } from '../../UIManager';
import { LabelConfig, Label } from '../labels/Label';
import { PlayerAPI } from 'bitmovin-player';
/**
 * A label that displays the index of the currently playing ad out of the total number of ads.
 *
 * @category Labels
 */
export declare class AdCounterLabel extends Label<LabelConfig> {
    constructor(config?: LabelConfig);
    configure(player: PlayerAPI, uimanager: UIInstanceManager): void;
}
