import { Document } from "mongoose";
import { ICustomerModelAttributes } from "../entities/customer.entity";
import { ICommentModelInferCreation } from "./comment.dto";
import { IColumnModelInferCreation } from "./column.dto";
export interface ICustomerModelInferCreation extends ICustomerModelAttributes, Document<string> {
    comments: ICommentModelInferCreation[];
    column: IColumnModelInferCreation<ICustomerModelInferCreation>;
}
