import { AxiosRequestConfig } from 'axios'; /** * Collection of requests related to spaces. * * @public */ export declare class SpaceRequests { /** * @param id - The id of the space whose details are to be fetched. * @param withReplays - Whether to include replay information. * @param withListeners - Whether to include listeners information. * @param isMetatagsQuery - Whether the request is a metatags query. */ static details(id: string, withReplays?: boolean, withListeners?: boolean, isMetatagsQuery?: boolean): AxiosRequestConfig; }