export declare type JsonSQLite = { database: string; encrypted: boolean; mode: string; tables: Array; }; export declare type JsonTable = { name: string; schema?: Array; indexes?: Array; values?: Array>; }; export declare type JsonColumn = { column?: string; value: string; foreignkey?: string; }; export declare type JsonIndex = { name: string; column: string; }; export declare function isJsonSQLite(obj: any): boolean; export declare function isTable(obj: any): boolean;