import { Document } from "mongoose";
import { ICompanyModelAttributes } from "../entity/company.entity";
export interface ICompanyModelInferCreation extends ICompanyModelAttributes, Document<string> {
}
