export declare function workspaceCreate(slug: string, options: { name?: string; description?: string; team?: string; }): Promise; export declare function workspaceList(): Promise; export declare function workspaceShow(workspace: string): Promise; export declare function workspaceDelete(workspace: string): Promise; export declare function workspaceArchive(workspace: string): Promise; export declare function workspaceMemberAdd(workspace: string, account: string, options: { role?: string; }): Promise; export declare function workspaceMemberRemove(workspace: string, account: string): Promise; export declare function workspaceMemberList(workspace: string): Promise; export declare function workspaceItemAdd(workspace: string, item: string, options: { ownership?: string; kind?: string; }): Promise; export declare function workspaceItemList(workspace: string): Promise; export declare function workspaceItemRemove(workspace: string, item: string, options: { kind?: string; }): Promise; export declare function workspaceCapture(workspace: string, text: string): Promise; export declare function workspaceNoteSet(workspace: string, options: { title?: string; body?: string; slug?: string; maturity?: string; sourceArtifact?: string; }): Promise; export declare function workspaceNoteArchive(workspace: string, slug: string): Promise; export declare function workspaceNoteUnarchive(workspace: string, slug: string): Promise; export declare function workspaceNoteDelete(workspace: string, slug: string): Promise; export declare function workspaceNoteGet(workspace: string, slug: string): Promise; export declare function workspaceNoteList(workspace: string, options?: { archived?: boolean; includeArchived?: boolean; }): Promise; export declare function workspaceSearch(workspace: string, query: string): Promise; export declare function workspaceNotePromote(workspace: string, slug: string): Promise; export declare function workspaceWorklist(workspace: string, options: { staleCaptureDays?: string; staleTopTierDays?: string; }): Promise; export declare function workspaceLink(workspace: string, fromSlug: string, toSlug: string, options: { relation?: string; }): Promise; export declare function workspaceUnlink(workspace: string, fromSlug: string, toSlug: string): Promise; export declare function workspaceLinks(workspace: string, slug: string): Promise;