import { KeyValueStoreExtended } from '@tradle/aws-common-utils';
import { Folder } from './types';
export interface CreateStoreOpts {
    folder: Folder;
    parse?: (raw: string) => any;
}
export declare const createKVStore: ({ folder, parse }: CreateStoreOpts) => KeyValueStoreExtended;
export declare const createJsonKVStore: (opts: CreateStoreOpts) => KeyValueStoreExtended;
export declare const createGzippedKVStore: (opts: CreateStoreOpts) => KeyValueStoreExtended;
export declare const createGzippedJsonKVStore: (opts: CreateStoreOpts) => KeyValueStoreExtended;
//# sourceMappingURL=kv.d.ts.map