import { Danmaku } from '../danmaku';
import type { Commander, DanmakuOptionsInit } from '../types';
import BaseFixed from './base-fixed';
declare class FixedTopCommander extends BaseFixed {
    readonly danmaku: Danmaku;
    constructor(danmaku: Danmaku, el: HTMLElement, config: Commander, options: DanmakuOptionsInit);
    render(): void;
}
export default FixedTopCommander;
