import { Action, ActionCreator } from "redux";
export interface IncrementTickAction extends Action {
    type: "@@TickPlugin/INCREMENT_TICK";
    payload: {
        tickerName: string;
    };
}
export declare const incrementTick: ActionCreator<IncrementTickAction>;
