import React from 'react'; interface UndoRedoButtonsProps { baseClassName: string; hashId?: string; i18n: any; onUndo: () => void; onRedo: () => void; } export declare const UndoRedoButtons: React.NamedExoticComponent; export {};