import type { FactoryState, RootState } from '../GlobalStore';
import type { ThemesState } from '../Theme';
type DeepPartial<T> = {
    [P in keyof T]?: DeepPartial<T[P]>;
};
export declare const createTestStore: (overrides?: DeepPartial<RootState>) => import("@looker/redux").Store<{
    factory: FactoryState;
    themes: ThemesState;
}, import("redux").AnyAction>;
export {};
