import IDatabase from "./interfaces/database";
import AttributeModel from "./models/attribute/attribute";
import CategoryModel from "./models/category/category";
import ManufacturerModel from "./models/manufacturer/manufacturer";
import OptionModel from "./models/option/option";
import ProductModel from "./models/product/product";
export default class Model {
    private database;
    constructor(database: IDatabase);
    product: ProductModel;
    category: CategoryModel;
    option: OptionModel;
    attribute: AttributeModel;
    manufacturer: ManufacturerModel;
    destroyConnection(): void;
}
