/// <reference types="react" />
import { CommandButtonItem, CustomItems, ThemeValue, WithEditorProps } from '../../types';
import { TabOption } from '../Tabs';
export interface EditorTopbarRightProps {
    buttons?: CustomItems<CommandButtonItem>;
}
export interface EditorTopbarRightComponentProps extends EditorTopbarRightProps, React.HTMLProps<HTMLDivElement> {
}
export declare const themeTabs: TabOption<ThemeValue>[];
declare const ActionButtons: import("react").FunctionComponent<EditorTopbarRightComponentProps & WithEditorProps>;
export default ActionButtons;
