import type { Command } from 'dreaction-protocol'; export interface OpenInEditorOptions { url?: string; } declare const openInEditor: (pluginConfig?: OpenInEditorOptions) => () => { onCommand: (command: Command) => void; }; export default openInEditor; //# sourceMappingURL=openInEditor.d.ts.map