import { type HyperchartRunnerConfig as GenericRunnerConfig } from "@surprisal/hyperchart/runtime"; export type PiRunnerModules = { codingAgent: string; typebox: string; }; export type HyperchartRunnerConfig = GenericRunnerConfig & { agentDir: string; /** Exact modules supplied by the active Pi host for the detached runner bootstrap. */ piModules: PiRunnerModules; }; export declare function main(argv?: string[]): Promise; //# sourceMappingURL=hyperchart_runner.d.ts.map