import * as React from 'react'; export interface Props { storageKey: string; defaultValue: T; children: (value: T, onSaveToStore: (value: T) => void, onDeleteFromStore: () => void) => React.ReactNode; } export declare const LocalStorageValueProvider: (props: Props) => import("react/jsx-runtime").JSX.Element;