/** Initialise Kitten’s global internal database (kitten.__db). (That’s two underscores to – uhum – underscore the fact that this is really, really internal so don’t go messing in here. *makes scary noises* Here, have a ghost emoji: 👻) Unlike Kitten‘s internal and app databases, this database is scoped to the Kitten instance, *not* to the app that Kitten is serving. */ declare class State { isBeingDeployedByDomain: boolean; constructor(properties?: {}); } export type GlobalInternalDatabaseType = { state: State; }; export default class GlobalInternalDatabase { static __db: GlobalInternalDatabaseType | null; static initialise(): Promise; } export {};