/** * Command options for the run command */ export interface RunOptions { tools: string[]; readOnly?: boolean; } /** * Main function to start server * * @param {RunOptions} options - Command options * @returns {Promise} */ declare const run: (options: RunOptions) => Promise; export default run;