import { VBindings } from "../VBindings"; export declare class BindingsUtils { /** * Gets the identifiers that have changed between two sets of bindings. * @param oldBindings The old set of bindings. * @param newBindings The new set of bindings. * @returns An array of identifiers that have changed. */ static getChangedIdentifiers(oldBindings: VBindings, newBindings: VBindings): string[]; }