export declare function createSearchStore(): { dispatch: (action: { type: string; } | ((...args: any[]) => any)) => any; getState: () => import("./state").State; subscribe: (listener: () => void) => import("redux").Unsubscribe; replaceReducer: (nextReducer: import("redux").Reducer) => void; };