import { Space, SpaceIncludeParam } from "../../interfaces/models/Space"; import { PaginatedResponse } from "../../interfaces/PaginatedResponse"; export interface FetchMutualSpacesProps { /** The OTHER user — spaces shared with this user are returned. */ userId: string; page?: number; limit?: number; include?: SpaceIncludeParam; } declare function useFetchMutualSpaces(): (params: FetchMutualSpacesProps) => Promise>; export default useFetchMutualSpaces;