import { type CreateResourceParams } from "../../client.js"; import { type BatchableRequest, type GetNode, type ListEdge } from "../../types/shared.js"; import { type InstagramComment, type InstagramCommentParams, type InstagramCommentResult, type InstagramSuccessResult } from "../../types/instagram.js"; export type GetInstagramComment = GetNode; export type ListInstagramComments = ListEdge; export type CreateInstagramComment = (params: InstagramCommentParams) => BatchableRequest; export type HideInstagramComment = (hidden: boolean) => BatchableRequest; export type DeleteInstagramComment = () => BatchableRequest; export declare const createInstagramCommentsResource: ({ http, id }: CreateResourceParams) => { list: ListInstagramComments; create: CreateInstagramComment; }; export declare function createInstagramCommentResource({ http, id }: CreateResourceParams): { get: GetInstagramComment; reply: CreateInstagramComment; replies: ListInstagramComments; hide: HideInstagramComment; delete: DeleteInstagramComment; }; //# sourceMappingURL=InstagramCommentResource.d.ts.map