import { Plugin } from 'vite';

interface OpenInEditorOptions {
    editorBin?: string;
    log?: boolean;
}
declare function vitePluginOpenInEditor(options?: OpenInEditorOptions): Plugin;

export { type OpenInEditorOptions, vitePluginOpenInEditor as default, vitePluginOpenInEditor as openInEditor };
