import type { ApiServer } from '../ApiServer'; import type { StoreContext } from '../chatkit/store'; import { type RunStore } from '../runs/store'; export interface RunHandlerOptions { runStore: RunStore; } export declare function registerRunRoutes(server: ApiServer, options: RunHandlerOptions): void;