import type { CommandRunner, PythonTarget } from "./lib/types.mjs"; export declare const COMMAND_REGISTRY: ({ name: string; module: string; export: string; category: "admin"; summary: string[]; python?: never; } | { name: string; python: { target: { module: string; script?: never; }; prefix?: never; inject?: never; }; category: "admin"; summary: string[]; module?: never; export?: never; } | { name: string; python: { target: { module: string; script?: never; }; inject: ("okstra-bin" | "workspace-root")[]; prefix?: never; }; category: "admin"; summary: string[]; module?: never; export?: never; } | { name: string; python: { target: { module: string; script?: never; }; prefix?: never; inject?: never; }; category: "introspection"; summary: string[]; module?: never; export?: never; } | { name: string; module: string; export: string; category: "introspection"; summary: string[]; python?: never; } | { module?: never; export?: never; name: string; python: { target: { module: string; script?: never; }; prefix: string[]; inject: "workspace-root"[]; }; category: "introspection"; summary: string[]; } | { module?: never; export?: never; name: string; python: { prefix?: never; target: { module: string; script?: never; }; inject: ("okstra-bin" | "workspace-root")[]; }; category: "introspection"; summary: string[]; } | { module?: never; export?: never; name: string; python: { prefix?: never; inject?: never; target: { module?: never; script: string; }; }; category: "introspection"; summary: string[]; })[]; export declare const PYTHON_TARGETS: readonly PythonTarget[]; export declare const COMMANDS: Map Promise>; export declare const USAGE: string;