import type { IUi } from "../ui.js"; export interface IConfigureMcpParams { agent?: string; instructions?: boolean; ui?: IUi; cwd?: string; } export declare function configureMcp(params?: IConfigureMcpParams): Promise;