import { Comment, Get } from "../types"; export interface GetCommentsRequestProps { asset_id: string; parameters?: { include: string; }; } export declare type GetCommentsResponse = Comment[]; /** @internal */ export declare const getComments: (get: Get) => (props: GetCommentsRequestProps) => Promise;