import { Workspace } from "../../interfaces/models/Workspace"; export interface UpdateWorkspaceProps { workspaceId: string; name?: string; metadata?: Record; } /** * Update a workspace's name / metadata. The actor is the bearer-token user and * must be the owner or hold the `edit-workspace` capability. */ declare function useUpdateWorkspace(): (props: UpdateWorkspaceProps) => Promise; export default useUpdateWorkspace;