import { UserAP } from "./UserAP"; declare const _default: { id: { type: string; autoIncrement: boolean; primaryKey: boolean; }; modelId: { type: string; required: boolean; }; modelName: { type: string; required: boolean; }; action: { type: string; }; data: { type: string; }; diff: { type: string; }; user: { model: string; }; isCurrent: { type: string; }; createdAt: { type: string; autoCreatedAt: boolean; }; updatedAt: { type: string; autoUpdatedAt: boolean; }; preview: { type: string; }; }; export default _default; export interface HistoryActionsAP { id: number; modelId: number | string; modelName: string; action: string; data: any; diff: any; user: UserAP; isCurrent: boolean; createdAt: number; updatedAt: number; preview: boolean; }