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