import { IWorkbenchState } from "../types"; /** * Compares two workbench state objects and returns whether they are identical, * ignoring changes in selected tabs of stacks. * * @param {WorkbenchState} foo the first state * @param {WorkbenchState} bar the second state * @return {boolean} true if the two states are equal or differ only in the * selected tabs, false otherwise */ export declare function areWorkbenchStatesEqualIgnoringSelection(foo: IWorkbenchState, bar: IWorkbenchState): boolean;