import { IlistItemCommentsResults } from "./../models"; import { IAddCommentPayload } from "../models/IAddCommentPayload"; import { IComment } from "../components/Comments/IComment"; interface returnObject { getListItemComments: () => Promise; getNextPageOfComments: (nextLink: string) => Promise; addComment: (comment: IAddCommentPayload) => Promise; deleteComment: (commentId: number) => Promise; likeComment: (commentId: number) => Promise; unlikeComment: (commentId: number) => Promise; } export declare const useSpAPI: () => returnObject; export {}; //# sourceMappingURL=useSpAPI.d.ts.map