import { Node } from '@babel/core';
import { Plugin } from 'vite';

type Options = {
    predicate?: (node: Node) => boolean;
    base?: string;
};
declare function inspectDom(options?: Options): Plugin;

export { inspectDom };
