import { Workspace } from "../../interfaces/models/Workspace"; import { PaginatedResponse } from "../../interfaces/PaginatedResponse"; export interface FetchManyWorkspacesParams { page?: number; limit?: number; include?: string; } /** * Leaf fetcher for the caller's direct-membership + owned workspaces. The actor * is derived from the bearer token — no `userId` is sent. */ declare function useFetchManyWorkspaces(): (params?: FetchManyWorkspacesParams) => Promise>; export default useFetchManyWorkspaces;