import AnimationManager from "../display/core/AnimatedObjectManager/AnimationManager"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; import IMeshAppendable from "./IMeshAppendable"; export type AnimationValue = Record>; export type Animation = string | number | boolean | AnimationValue; export default interface IAnimatedObjectManager extends IMeshAppendable { animations: Record; animation: Nullable; animationPaused: boolean; animationLoop: boolean | number; } export declare const animatedObjectManagerSchema: Required>; export declare const animatedObjectManagerDefaults: Partial>;