import * as React from 'react'; import { ReactNode } from 'react'; /** * A component to set store state for a key on mount declaratively * * To use it, just wrap any component that need to use the corresponding * store item with . * This wrapping needs to be done to ensure that the corresponding store item * is set before rendering the wrapped component. * * Tip: is a great helper for mocking the store in * unit tests. Prefer it to calling the Store manually. * * @example * * * * * * @example // Using is equivalent to using `useStoreContext` and setting its value directly. * * const [, setDensity] = useStore('list.density'); * * useEffect(() => { * setDensity('small'); * }, []); * * @param {Props} props * @param {string} props.name Store item key. Required. Separate with dots to namespace, e.g. 'posts.list.columns' * @param {any} props.value Store item value. Required. * @param {children} props.children Children are rendered as is, on mount */ export declare const StoreSetter: ({ value, name, children }: StoreSetterProps) => React.JSX.Element; export interface StoreSetterProps { name: string; value: any; children: ReactNode; } //# sourceMappingURL=StoreSetter.d.ts.map