import VideoSettings from './VideoSettings'; /** * Настройки полученные от сервера звонков * @hidden */ export type ServerSettings = { camera: VideoSettings | null; screenSharing: VideoSettings | null; fastScreenSharing: VideoSettings | null; }; export default ServerSettings; export declare function compareServerSettings(ss1: ServerSettings, ss2: ServerSettings): boolean; export declare function merge(ss: ServerSettings, other: ServerSettings): { camera: VideoSettings; screenSharing: VideoSettings; fastScreenSharing: VideoSettings; }; export declare function createEmptyServerSettings(): ServerSettings; export declare function clone(ss: ServerSettings): ServerSettings;