import type { CreateResult, UpdateCommentParams } from '../types.js'; /** * Updates a comment entity. Only the provided fields are updated. * * @deprecated Use `createGeoClient({ network }).comments.update(...)`, or * `Ops.comments.update(...)` when you only need pure ops. * * @example * ```ts * import { Graph } from '@geoprotocol/geo-sdk'; * * const { id, ops } = Graph.updateComment({ * id: commentId, * content: 'Updated content', // optional, only updated if provided * resolved: true, // optional, only updated if provided * }); * ``` * * @param params – {@link UpdateCommentParams} * @returns – {@link CreateResult} */ export declare const updateComment: ({ id, content, resolved }: UpdateCommentParams) => CreateResult; //# sourceMappingURL=update-comment.d.ts.map