export interface DeleteWorkspaceProps { workspaceId: string; } export interface DeleteWorkspaceResponse { message: string; } /** * Delete a workspace. Owner-only — the actor (the bearer-token user) must be * the workspace's own owner or an ancestor owner. */ declare function useDeleteWorkspace(): (props: DeleteWorkspaceProps) => Promise; export default useDeleteWorkspace;