import { ILead } from "./Lead"; import { IContact } from "./Contact"; import { ICompany } from "./Company"; import { ITag } from "./Tag"; import { TConstructor } from "../../types"; export interface IEntityConstructors { Lead: TConstructor; Contact: TConstructor; Company: TConstructor; Tag: TConstructor; } declare const _default: { Lead: TConstructor; Contact: TConstructor; Company: TConstructor; Tag: TConstructor; }; export default _default;