import React, { HTMLProps, ReactNode } from "react";
type TopContentLeftBaseProps = {
    children: ReactNode;
    leftBaseProps?: HTMLProps<HTMLDivElement>;
};
/**
 * TopContentLeftBase is the left section of the top controls
 * Typically contains the search input
 * Improved with better responsiveness
 */
declare const TopContentLeftBase: React.FC<TopContentLeftBaseProps>;
export default TopContentLeftBase;
