import { IControlBarButtonItem } from './controlBarButton';
export declare const sectionDefaultStyle: string;
export declare const sectionBlueStyle: string;
export interface IControlBarSection {
    id: string;
    enable?: (() => boolean) | undefined;
    buttons: IControlBarButtonItem[];
    style: string;
}
export declare function createSection(section: IControlBarSection): import("react/jsx-runtime").JSX.Element;
