import { User } from '../users/types';
export declare type Comment = {
    type_of: string;
    id_code: string;
    body_html: string;
    user: User;
    children: Comment[];
};
