import type { PlainStyle } from '../../common'; import type { CSSAnimationKeyframes, CSSKeyframesRule } from '../types'; export default abstract class CSSKeyframesRuleBase implements CSSKeyframesRule { private static currentAnimationID; private readonly cssRules_; private readonly cssText_; private readonly length_; private readonly name_; constructor(keyframes: CSSAnimationKeyframes, cssText?: string); get cssRules(): CSSAnimationKeyframes; get cssText(): string; get length(): number; get name(): string; static generateNextKeyframeName(): string; } //# sourceMappingURL=CSSKeyframesRuleBase.d.ts.map