export declare function useMutationObserver(target: Element | null, callback: MutationCallback, options?: MutationObserverInit): {
    disconnect: () => void | undefined;
    takeRecords: () => MutationRecord[];
};
