import { ReduxActionConfig } from './decorator/config';
import { ReduxActionDecoratorType } from './decorator/type';
import { ActionFunctionType } from './function-type';
export declare function ReduxAction(config?: ReduxActionConfig): ReduxActionDecoratorType;
export declare function getActionTypeByFunction(target: ActionFunctionType<{}>): string;
export declare function getActionType(...rest: Array<string | symbol>): string;
