import { FeatureItem } from './types'; import { ControlBlockButtonProps } from './control-block-button.types'; import { default as React } from 'react'; import { ActiveViewModsType } from '../../types'; export declare const ControlBlockWithoutResize: ({ leftSideInner, rightSideInner, isHaveControlBlock, activeView, featuresObj: { icons, featureItems, featureRightButtons, featureLeftButtons, featureSearching: { isActiveSearching, showSearchBlock, searchQueryLocalValue, placeholderSearchBlock, }, }, $borderTopRounded, collapseButtonPlacement, }: { leftSideInner: ControlBlockButtonProps[] | undefined; rightSideInner: ControlBlockButtonProps[] | undefined; isHaveControlBlock: boolean | undefined; activeView: ActiveViewModsType; featuresObj: { icons: FeatureItem[]; featureItems: FeatureItem[]; all: FeatureItem[]; featureRightButtons: ControlBlockButtonProps[]; featureLeftButtons: ControlBlockButtonProps[]; featureSearching: { isActiveSearching: boolean; showSearchBlock: boolean; setShowSearchBlock: React.Dispatch>; searchQueryLocalValue: string; placeholderSearchBlock: string; }; }; $borderTopRounded: boolean; collapseButtonPlacement?: 'inside' | 'above'; }) => import("react/jsx-runtime").JSX.Element;