import { ExtensionAPI } from '@earendil-works/pi-coding-agent'; type EditorType = "wait-cli" | "windows-gui"; interface EditorConfig { id: string; name: string; type: EditorType; command: string; detectPaths?: string[]; registryNames?: string[]; } declare function export_default(pi: ExtensionAPI): void; export { type EditorConfig, type EditorType, export_default as default };