export declare function createAction(type: T): { type: T; }; export declare function createAction(type: T, payload: P): { type: T; payload: P; };