type WatchOptions = {
    onAdd?: (el: Element) => void;
    onRemove?: (el: Element) => void;
    onChange?: (el: Element) => void;
};
export declare function watch(selector: string, options: WatchOptions, observerOptions?: MutationObserverInit): () => void;
export {};
