/**
 * Used to facilitate the stacking between multiple opened windows.
 * When calling 'bringToFront' brings caller to top.
 * This is done by changing the zIndex of all registered window-modals.
 */
export declare const useStacking: () => {
    zIndex: number;
    bringInFront: () => void;
};
