import { Arguments } from '../arguments.js'; import { PropertyEvent } from '../property_event.js'; import { RemoteDevice } from '../remote_device.js'; import { OcaActuator } from './OcaActuator.js'; /** * Pan or Balance control. * @extends OcaActuator * @class OcaPanBalance */ export declare class OcaPanBalance extends OcaActuator { /** * This event is emitted whenever Position changes. */ OnPositionChanged: PropertyEvent; /** * This event is emitted whenever MidpointGain changes. */ OnMidpointGainChanged: PropertyEvent; constructor(objectNumber: number, device: RemoteDevice); /** * Gets the value and limits of the **Position** property. * The return values of this method are * * - Position of type ``number`` * - minPosition of type ``number`` * - maxPosition of type ``number`` * * @method OcaPanBalance#GetPosition * @returns {Promise>} */ GetPosition(): Promise>; /** * Sets the value of the **Position** property. * * @method OcaPanBalance#SetPosition * @param {number} Position * * @returns {Promise} */ SetPosition(Position: number): Promise; /** * Gets the value and limits of the **MidpointGain** property. * The return values of this method are * * - Gain of type ``number`` * - minGain of type ``number`` * - maxGain of type ``number`` * * @method OcaPanBalance#GetMidpointGain * @returns {Promise>} */ GetMidpointGain(): Promise>; /** * Sets the value of the **MidpointGain** property. * * @method OcaPanBalance#SetMidpointGain * @param {number} Gain * * @returns {Promise} */ SetMidpointGain(Gain: number): Promise; }