import { InputSource } from '../interfaces/input-source.interface.js'; /** * Check if the current list of inputs is equal to the new list of inputs. * inputs are considered equal if the sourceid, sourcename and displayname are the same. * New objects get created as there could be additional properties in the input source object. * @param newSources * @param oldSources */ export declare function sourcesAreEqual(newSources: InputSource[], oldSources: InputSource[]): boolean;