import { ActionBehavior, ActionBehaviorConstructorProps } from '../actionbehavior'; import { Component } from '../component'; import { ContextManager } from '../context'; /** * Behavior to pause a specific layer clip animation. * @zbehavior * @zicon pause_circle * @zgroup Animation Actions */ export declare class PauseLayerClip extends ActionBehavior { private zcomponent; /** * The ID of the layer clip to be paused. * @zprop * @zvalues layerclipids */ layerClip: string | undefined; constructor(contextManager: ContextManager, instance: Component, props: ActionBehaviorConstructorProps); /** @zprop */ perform(): void; /** @zui */ preview(): void; }