import { SetSelfViewDisableAllDevicesCommandArguments, SetSelfViewDisableCommandArguments } from './types';
export declare const camera: {
    /**
     * Sets the self-view camera disabled/enabled for all cameras.
     *
     * @param setSelfViewDisableAllDevicesCommandArguments: object with a
     * boolean that tells whether to enable or not the self-view camera for all devices
     */
    setSelfViewDisableAllDevices: (setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableAllDevicesCommandArguments) => void;
    /**
     * Sets the self-view camera disabled/enabled for specific camera.
     *
     * @param setSelfViewDisableCommandArguments: object with a
     * boolean that tells whether to enable or not the self-view camera for specific device
     */
    setSelfViewDisable: (setSelfViewDisableCommandArguments: SetSelfViewDisableCommandArguments) => void;
};
