import { Provider, Type } from '@asuka/di'; export interface ModuleConfig { name: string; providers?: Provider[]; } export declare const Module: (moduleConfig: string | ModuleConfig) => (target: Type) => any; export declare const getReducer: (ins: any) => any; export declare const getEpic: (ins: any) => any;