import { TypeConstant, ActionCreatorBuilder, ActionBuilder } from './type-helpers'; export declare function createAction(type: TType): () => ActionCreatorBuilder; export declare function createAction(type: TType, payloadCreator: undefined | ((...args: TArgs) => TCreatorPayload), metaCreator?: (...args: TArgs) => TCreatorMeta): () => (...args: TArgs) => ActionBuilder;