import { AbstractEntity } from '../../abstractEntity'; export declare enum QuoteCommentsFields { BODY = "body" } export declare type QuoteCommentsType = { [QuoteCommentsFields.BODY]: string; }; export declare class QuoteComments extends AbstractEntity { #private; constructor(quoteCommentsResponse: QuoteCommentsType); get body(): string; toJSON(): QuoteCommentsType; }