import type StorageProvider from './types';
/**
 * The type of the key-value pair stored in the SQLite database
 * @property record_key - the key of the record
 * @property valueJSON - the value of the record in JSON string format
 */
type OnyxSQLiteKeyValuePair = {
    record_key: string;
    valueJSON: string;
};
declare const provider: StorageProvider;
export default provider;
export type { OnyxSQLiteKeyValuePair };
