import { JsonObject, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link System} for the original type. */ export type CreateSystem = { key: string; value?: JsonObject; }; export type System = { key: string; value: JsonObject; }; export type SystemKeys = 'key' | 'value'; export declare const Systems: GeneratedSchema;