/// import type { PropertiesSchema, Lyra } from '@nearform/lyra'; import type { PersistenceFormat, AvailableRuntimes } from './types'; export declare const DEFAULT_DB_NAME: string; export declare function getDefaultFileName(format: PersistenceFormat, runtime: AvailableRuntimes): string; export declare function persist(db: Lyra, format?: PersistenceFormat, isBrowser?: boolean): string | Buffer; export declare function restore(format: PersistenceFormat | undefined, data: string | Buffer, isBrowser?: boolean): Lyra;