import { Comment, Get } from "../types"; export interface GetCommentRequestProps { comment_id: string; parameters?: { include: string; }; } export declare type GetCommentResponse = Comment; /** @internal */ export declare const getComment: (get: Get) => (props: GetCommentRequestProps) => Promise;