/**
 * Animation timeline.
 *
 * @see https://drafts.csswg.org/web-animations-1/#the-animationtimeline-interface
 */
export default class AnimationTimeline {
    /**
     * Returns the current timeline time.
     *
     * @returns Current time in milliseconds.
     */
    get currentTime(): number | null;
}
//# sourceMappingURL=AnimationTimeline.d.ts.map