import { ComputedRef, Ref } from 'vue'; export declare class OverlayStackStore { private _items; items: Readonly[], readonly import('vue').DeepReadonly[]>>; itemsByContainer: ComputedRef<{ [container: string]: T[]; }>; push(options: T): void; pop(): void; remove(id: string): void; clear(): void; }