import React from 'react'; interface Props { /** * the color of the mask */ backgroundColor?: string; /** * any valid jsx */ children: React.ReactNode; /** * function to happen after the close button is clicked */ closeCb: () => void; /** * if the drawer is currently open or not */ drawerOpen: boolean; /** * class applied to the drawer */ theme?: string; /** * prevents the background page from scrolling */ preventScroll?: boolean; /** * title of the drawer */ title?: string; } declare const BottomDrawer: ({ backgroundColor, children, closeCb, drawerOpen, theme, preventScroll, title }: Props) => JSX.Element; export default BottomDrawer;