import { ActiveViewModsType, ControlBlockSize } from '../types'; import { FC, ReactNode } from 'react'; export type TitleBlockProps = { activeView: ActiveViewModsType; $borderTopRounded: boolean; text: ReactNode; rightSlot?: ReactNode; size?: ControlBlockSize; }; export declare const TitleBlock: FC;