import React from 'react'; type EntryKind = 'scenario' | 'custom'; interface Entry { kind: EntryKind; label: string; scenarioName?: string; } export declare const buildEntries: (scenarios: string[]) => Entry[]; export declare const validateScenarioName: (raw: string, existing: string[]) => string | null; export declare const RunModal: React.FC<{ workflowName: string; workflowPath?: string; }>; export {};