///
import { type DrawerProps as MuiDrawerProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
export type BottomDrawerProps = {
/**
* Заголовок
*/
title?: JSX.Element | JSX.Element[] | string;
/**
* Высота шапки компонента
* * @default 56
*/
drawerHeaderHeight?: number;
} & WithoutEmotionSpecific>;
export declare const BottomDrawer: ({ title, drawerHeaderHeight, children, onClose, ...props }: BottomDrawerProps) => JSX.Element;