import type { User } from '../models/User.js'; import type { CancelablePromise } from '../core/CancelablePromise.js'; export declare class ContentWatchersService { /** * Fetch users watching a given content * Returns a paginated list of Users watching the given Content identified by contentId. Only a Confluence Administrator or Space Administrator can perform this action. * @param contentId the ID of the Content the User is attempting to view the watchers for. * @param limit The limit of the number of users to return, this may be restricted by fixed system limit. * @param start The start point of the collection to return. * @returns any The list of Users watching the Content. * @throws ApiError */ static index(contentId: string, limit?: string, start?: string): CancelablePromise<{ results?: Array; totalCount?: number; start?: number; limit?: number; size?: number; _links?: { base?: string; context?: string; self?: string; next?: string; prev?: string; }; }>; } //# sourceMappingURL=ContentWatchersService.d.ts.map