import { PatchAST } from './types.js'; import { PatchConfig } from './config.js'; declare const db: { setData(ast: PatchAST): void; getData(): PatchAST | null; getConfig(): PatchConfig; clear(): void; }; export default db; export type PatchDB = typeof db; //# sourceMappingURL=db.d.ts.map