import type { Plugin } from '../plugin/plugin.js';
import type { Table } from '../schema/table.js';
export declare const createMemDBClient: () => {
    id: () => string;
    memoryDB: Record<string, any[]>;
    tables: Record<string, Table>;
};
export declare const newMemDBPlugin: () => Plugin;
