import { AnimType } from "../types/enums/AnimType.js"; import { KeyframeAnimationProperties } from "../types/properties/element/Animation.js"; import { AnimationKeyframe } from "./AnimationKeyframe.js"; export declare class KeyframeController extends AnimationKeyframe { constructor(type: T, properties: KeyframeAnimationProperties, name?: string, namespace?: string, path?: string); serialize(): KeyframeAnimationProperties; }