/// export declare const useCommentsContext: () => { comments: import("../types").CommentProps[] | undefined; content: string; editCommentId: string | null; profiles: (import("../types").UserProfileResult | undefined)[]; options: Partial; type: import("../types").CommentType; setEditCommentId: (value: string | null) => void; handleModifyComment: (commentId: string) => void; handleChangeContent: (event: import("react").ChangeEvent) => void; handleCreateComment: (content: string) => void; handleUpdateComment: (comment: string) => void; handleDeleteComment: (id: string) => void; handleReset: () => void; };