/** * shows controls to play and pause animation properties * */ import { TypedAnimNode } from './_Base'; import { TimelineBuilder } from '../../../core/animation/TimelineBuilder'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class NullAnimParamsConfig extends NodeParamsConfig { /** @param play the animations */ play: import("../utils/params/ParamsConfig").ParamTemplate; /** @param pause the animations */ pause: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class NullAnimNode extends TypedAnimNode { params_config: NullAnimParamsConfig; static type(): string; initializeNode(): void; cook(input_contents: TimelineBuilder[]): void; private _timeline_builder; private _timeline; play(): Promise; pause(): Promise; static PARAM_CALLBACK_play(node: NullAnimNode): void; static PARAM_CALLBACK_pause(node: NullAnimNode): void; } export {};