import { SqliteDatabase } from '@facetlayer/sqlite-wrapper'; export declare const RunningStatus: { readonly running: 1; readonly stopped: 0; }; export type RunningStatus = (typeof RunningStatus)[keyof typeof RunningStatus]; export declare function getDatabase({ overrideDirectory, }?: { overrideDirectory?: string; }): SqliteDatabase; //# sourceMappingURL=database.d.ts.map