declare const LayoutHistoryAction: { initPageLayoutHistory: (DSLCore?: any) => void; pageLayoutAddChange: (data: any, DSLCore: any) => void; pageLayoutUndo: (DSLCore: any) => void; pageLayoutRedo: (DSLCore: any) => void; canUndo: (DSLCore: any) => any; canRedo: (DSLCore: any) => any; pageLayoutUndoWithId: (id: number) => void; pageLayoutGetHistory: (DSLCore?: any) => any; initEventActionsHistory: () => void; destoryPageLayoutHistory: (pageId?: string) => void; }; export default LayoutHistoryAction;