import { FractalStoreOptions } from './helpers'; /** * Modifies the behaviour of any `@select`, `@select$`, or `@dispatch` * decorators to operate on a substore defined by the IFractalStoreOptions. * * See: * https://github.com/angular-redux/platform/blob/master/packages/store/articles/fractal-store.md * for more information about SubStores. */ export declare function WithSubStore({ basePathMethodName, localReducer, }: FractalStoreOptions): ClassDecorator;