/** * synap update * * Update the synap skill and optionally trigger a server-side redeploy * via Dokploy when DOKPLOY_API_KEY is configured. * * synap update — update skill + show service status * synap update --server — also trigger Dokploy redeploy of control-plane * synap update --all — trigger redeploy of all registered Dokploy services */ export interface UpdateOptions { server?: boolean; all?: boolean; } export declare function update(opts?: UpdateOptions): Promise;