import ProxyInterface from '../proxy-interface'; import { CommentModel } from '../model/comment'; declare class CommentProxy implements ProxyInterface { private comment; constructor(responseData: any); getModel(): CommentModel; } declare class CommentArrayProxy implements ProxyInterface { private comment; constructor(responseData: any); getModel(): CommentModel[]; } export { CommentProxy, CommentArrayProxy }; //# sourceMappingURL=comment-proxy.d.ts.map