import { TopBarProps } from './types'; export declare const TOP_BAR_HEIGHT: { readonly s: 56; readonly m: 64; readonly xl: 80; }; /** * Топ-бар - блок для вывода содержимого в верхней части карточек, модальных окон и других сложных элементов. * @param props Свойства. * @return Элемент. */ export declare function TopBar({ divided, size, rounds, title, subtitle, buttons: { start, startSecondary, end, endSecondary }, className, style, 'data-testid': testId, }: TopBarProps): import("react").JSX.Element;