import type { Plugin } from 'vite'; export interface ViteGraphweaverOptions { projectRoot?: string; } declare const graphweaverPlugin: ({ projectRoot, }?: ViteGraphweaverOptions) => Plugin; export default graphweaverPlugin;