/**
 * Determine which of two nodes appears in front of the other —
 * if `a` is in front, returns 1, otherwise returns -1
 * @param a First element
 * @param b Second element
 */
declare function compareStackingOrder(a: Element, b: Element): number;

export { compareStackingOrder };
