import { ILog, LogType } from '../../types'; interface IAction { type: string; payload: any; } export declare class ReduxAction implements ILog { _id: number; type: LogType; startTime: number; stringifiedAction: string; extra: string; action: IAction; constructor(attributes?: any); } export default ReduxAction;