import type { User } from '../models/User.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class SpaceWatchersService { /** * Fetch users watching space * Returns a paginated list of users watching the given Space identified by spaceKey. Only a Confluence Administrator or Space Administrator can perform this action. * @param spaceKey the key of the Space the User is attempting to view. * @param limit * @param start * @returns any returns a paginated list of users watching the given Space identified by spaceKey * @throws ApiError */ static index4(spaceKey: string, limit?: number, start?: number): CancelablePromise<{ results?: Array; totalCount?: number; start?: number; limit?: number; size?: number; _links?: { base?: string; context?: string; self?: string; next?: string; prev?: string; }; }>; } //# sourceMappingURL=SpaceWatchersService.d.ts.map