import { RouterState } from '../../router';
import { LiteralComponentsState } from '../../component';
/**
 * ** Constant for Store Router field.
 */
export declare const STORE_ROUTER = "router";
/**
 * ** Constant for Store Components field.
 */
export declare const STORE_COMPONENTS = "components";
/**
 * ** Store State interface.
 */
export interface StoreState {
    [STORE_ROUTER]: RouterState;
    [STORE_COMPONENTS]: LiteralComponentsState;
}
