///
import { SCCommentType } from '../types/comment';
/**
:::info
This custom hooks is used to fetch a comment.
:::
* @param object
* @param object.id
* @param object.commentObject
*/
export default function useSCFetchCommentObject({ id, commentObject }: {
id?: number;
commentObject?: SCCommentType;
}): {
obj: SCCommentType;
setObj: import("react").Dispatch>;
error: string;
};
//# sourceMappingURL=useSCFetchCommentObject.d.ts.map