import type { DatabaseBackendConfig } from "../config"; import type { DatabaseProvider } from "./types"; /** * Creates a DatabaseProvider from the given backend config. * For Postgres, the provider is initialized asynchronously (schema creation, pool setup). */ export declare function createProvider(config: DatabaseBackendConfig): Promise; export type { DatabaseProvider } from "./types"; export type { QueryFilters } from "./types"; //# sourceMappingURL=index.d.ts.map