/** * synap home * * Show the current bento layout of the active workspace's home screen. * Useful at the start of an agent session to understand what's already * present before proposing UI changes. */ import type { BaseOpts } from "./data.js"; export interface HomeOpts extends BaseOpts { workspace?: string; } export declare function showHome(opts: HomeOpts): Promise;