import { BottomBarProps, type BottomBarSize } from './types'; export declare const BOTTOM_BAR_HEIGHT: Record; export declare const BOTTOM_BAR_DEFAULTS: { readonly size: "m"; }; /** * Боттом-бар - блок для вывода содержимого в нижней части карточек, модальных окон и других сложных элементов. * @param props Свойства. * @return Элемент. */ export declare function BottomBar({ size, divided, children, className, rounds, 'data-testid': testId, ...rest }: BottomBarProps): import("react").JSX.Element;