import type { Storage } from '../storage/interface.ts'; import type { StorageBackend } from './types.ts'; /** * Creates a storage instance based on the selected backend and database path. * * Uses dynamic imports so that native addons are only loaded when requested. */ export declare function createStorage(backend: StorageBackend, database: string): Promise;