import React from 'react'; import { CommonProps } from '../Element/Element'; declare type DrawerProps = { /** Is Drawer open */ isOpen?: boolean; /** Is showing backdrop */ showBackdrop?: boolean; /** The event when Backdrop is clicked */ onCloseClick?: () => void; /** Use automatic scroll prevention */ automaticScrollPrevention?: boolean; } & CommonProps<'div'>; export declare const Drawer: React.FunctionComponent; export default Drawer;