import { Entity } from "../../interfaces/models/Entity"; import { Mention } from "../../interfaces/models/Mention"; export interface UpdateEntityProps { entityId: string; update: { title?: string | null | undefined; content?: string | null | undefined; attachments?: Record[]; keywords?: string[]; location?: { latitude: number; longitude: number; }; metadata?: Record; mentions?: Mention[]; nsfw?: boolean; }; } declare function useUpdateEntity(): (props: UpdateEntityProps) => Promise; export default useUpdateEntity;