import type { CommandModule } from './types'; export type { CommandModule } from './types'; export { extractWindowTarget, WindowTargetSchema } from './shared/window-target'; /** * Flat list of every `electron_*` command registered in v2.0.0. * * Order matters for `tools.ts` JSON output (MCP `tools/list` returns them in * declaration order). Group by category for readability; alphabetical within. */ export declare const allCommands: ReadonlyArray; /** * O(1) lookup table used by `handlers.ts` to dispatch by tool name. * Built once at module load. */ export declare const commandsByName: ReadonlyMap;