import { Plugin } from 'vite';

/**
 * Plugin options.
 */
interface Options {
    /**
     * Custom root path for the Neutralinojs project.
     * @default config.root
     */
    rootPath?: string;
}
declare const neutralino: (options?: Options) => Plugin;

export { neutralino as default };
