import type { ThemesState } from '../Theme';
import type { FactoryState } from './slice';
export declare const store: import("@looker/redux").Store<{
    factory: FactoryState;
    themes: ThemesState;
}, import("redux").AnyAction>;
export interface RootState {
    factory: FactoryState;
    themes?: ThemesState;
}
