import { Plugin } from 'vite';

type VitePluginOptions = {
    /**
     * Provide the path to your Next.js project directory
     * @default process.cwd()
     */
    dir?: string;
};
declare function VitePlugin({ dir, }?: VitePluginOptions): (Plugin | Promise<Plugin>)[];

export { VitePlugin as default };
