import type { ApiClient } from "@promobase/sdk-runtime"; import type { ThreadsPost } from "./types.ts"; export declare function createReplies(client: ApiClient): { list(postId: string, opts?: { limit?: number; after?: string; reverse?: boolean; }): Promise>; getConversation(postId: string, opts?: { limit?: number; after?: string; reverse?: boolean; }): Promise>; /** Hide or unhide a reply. */ hide(replyId: string, hidden?: boolean): Promise; }; //# sourceMappingURL=replies.d.ts.map