interface RunSelectorProps { apiKey: string; clusterId: string; onSelectRun: (runId: string | null) => void; } export declare const NONE_RUN_ID = "none"; export declare const RunSelector: ({ apiKey, clusterId, onSelectRun }: RunSelectorProps) => import("react/jsx-dev-runtime").JSX.Element; export {};