import { ActionBehavior, ActionBehaviorConstructorProps } from '../../actionbehavior'; import { Component } from '../../component'; import { ContextManager } from '../../context'; /** * Behavior to seek a specified stream to a specific time. * @zbehavior * @zicon fast_forward * @zgroup Stream Actions */ export declare class SeekStream extends ActionBehavior { private zcomponent; /** * The ID of the stream to seek. * @zprop * @zgroup Stop Settings * @zgrouppriority 20 * @zvalues streamids */ stream: string | undefined; /** * The time in milliseconds to seek to in the stream. * @zprop * @zgroup Stop Settings * @zgrouppriority 20 * @zdefault 0 * @ztype time-milliseconds */ time: number; /** * Creates an instance of SeekStream. * @param contextManager - The current ContextManager * @param instance - The instance of the component that this behavior is attached to * @param props - The constructor properties. */ constructor(contextManager: ContextManager, instance: Component, props: ActionBehaviorConstructorProps); /** @zprop */ perform(): void; /** @zui */ preview(): void; }