import { Literal } from "sequelize/types/utils";
import { User } from "../models";
export declare const commentParams: {
    attributes: {
        include: [Literal, string][];
    };
    include: {
        model: typeof User;
        as: string;
        attributes: {
            exclude: string[];
        };
    }[];
};
export declare const entityParams: {
    attributes: {
        include: [Literal, string][];
    };
    include: {
        model: typeof User;
        as: string;
        attributes: {
            exclude: string[];
        };
    }[];
};
