import { ActionCreatorWithPayload, ActionCreatorWithoutPayload } from './typeHelper';
export declare function createAction<P = void, T extends string = string>(type: string): ActionCreatorWithoutPayload<T> | ActionCreatorWithPayload<P, T>;
