import type { User } from '@sanity/types'; import type { DocumentPresence } from './types'; export interface UseDocumentPresenceOptions { ignoreLastActiveUpdates?: boolean; } export declare function useDocumentPresence(documentId: any, { ignoreLastActiveUpdates }?: UseDocumentPresenceOptions): DocumentPresence[]; /** * Returns a list of document-level users present in the document, without any additional * information on paths or when they were last active etc. This is useful for displaying a * list of users without re-rendering on minimal changes. * * @internal Rework this for v3 */ export declare function useDocumentPresenceUsers(documentId: any): User[]; //# sourceMappingURL=useDocumentPresence.d.ts.map