import { Lazy } from 'fp-ts/lib/function';
import { StoreEntry } from '../types';
declare const withDefault: (onNone: Lazy) => (a: StoreEntry) => {
get: () => A;
observe: () => import("rxjs").Observable;
set: (a: A) => void;
clear: () => void;
};
export default withDefault;