export interface MutationCallback {
    (mutations: MutationRecord[]): void;
}
interface Options {
    debounceTime?: number;
    config?: MutationObserverInit;
}
export declare function useMutationObservable(targetEl: HTMLElement | null, callback: MutationCallback, options?: Options): void;
export default useMutationObservable;
