declare const DEFAULT_OPTIONS: {
debounceTime: number;
config: MutationObserverInit;
};
type Options = typeof DEFAULT_OPTIONS;
export default function useMutationObservable(targetEl: HTMLElement | null, cb: MutationCallback, options?: Partial<Options>): void;
export {};