import APIObjectKind from "../../Interfaces/APIObjectKind"; /** * Represents a virtually isolated, but not necessarily physically isolated, * store of data that exists within a DBMS. Such stores of data are may have * constraints between objects, such as `Attribute`s or `Struct`s within them, * but are generally independent of other such objects in other databases. * * In relational databases, these are sometimes called "schema." */ declare const kind: APIObjectKind; export default kind; //# sourceMappingURL=kind.d.ts.map