/** * synap tools — Add and manage external service tools (credentials + connections) * * Subcommands: list, connect, disconnect, sync, schema */ export interface ConnectOpts { workspace?: string; podUrl?: string; apiKey?: string; } export declare function toolsConnect(service: string | undefined, opts: ConnectOpts): Promise; export interface ListOpts { json?: boolean; workspace?: string; } export declare function toolsList(opts: ListOpts): Promise; export interface SyncOpts { workspace?: string; } export declare function toolsSync(provider: string, opts: SyncOpts): Promise; export interface DisconnectOpts { workspace?: string; force?: boolean; } export declare function toolsDisconnect(provider: string, opts: DisconnectOpts): Promise; export interface SchemaOpts { writeContext?: string | boolean; json?: boolean; } export declare function toolsSchema(opts: SchemaOpts): Promise;