import React, { HTMLProps, ReactNode } from "react";
type TopContentRightBaseProps = {
    children: ReactNode;
    rightBaseProps?: HTMLProps<HTMLDivElement>;
};
/**
 * TopContentRightBase is the right section of the top controls
 * Typically contains the add button and other action buttons
 * Improved with better responsive behavior
 */
declare const TopContentRightBase: React.FC<TopContentRightBaseProps>;
export default TopContentRightBase;
