import { KeyframeAnimationInfo, KeyframeDeclaration, KeyframeInfo, UnparsedKeyframe } from '../animation/keyframe-animation'; export declare class CssAnimationParser { static keyframeAnimationsFromCSSDeclarations(declarations: KeyframeDeclaration[]): KeyframeAnimationInfo[]; static keyframesArrayFromCSS(keyframes: UnparsedKeyframe[]): KeyframeInfo[]; } /** * @see https://w3c.github.io/csswg-drafts/css-animations/#propdef-animation * @see https://developer.mozilla.org/en-US/docs/Web/CSS/animation * @internal - exported for testing * @param value * @param animations */ export declare function keyframeAnimationsFromCSSProperty(value: any, animations: KeyframeAnimationInfo[]): void; export declare function parseKeyframeDeclarations(unparsedKeyframeDeclarations: KeyframeDeclaration[]): KeyframeDeclaration[];