import { BaseApi } from './base.js'; import type { ConfluenceSpace, ConfluencePaginatedResponse, GetSpacesParams, GetSpaceParams } from '../types/index.js'; /** * Space-related API methods */ export declare class SpacesApi extends BaseApi { /** * Get all spaces visible to the user. */ list(params?: GetSpacesParams): Promise>; /** * Get a specific space by key. */ get(params: GetSpaceParams): Promise; } //# sourceMappingURL=spaces.d.ts.map