import React, { ReactNode } from "react"; import './Drawer.scss'; export interface MtDrawerProps { children?: React.ReactNode; openAnimation?: boolean; animationDuration?: number; customClass?: string; getContainer?: HTMLElement | string | boolean | (() => HTMLElement); closeIcon?: ReactNode; placement?: 'top' | 'right' | 'bottom' | 'left'; mask?: boolean; maskClosable?: boolean; height?: string | number; keyboard?: boolean; size?: 'default' | 'large' | string; title?: ReactNode; open?: boolean; zIndex?: number; lockScroll?: boolean; onClose?: (() => void) | null; drawerRender?: (() => ReactNode) | null; } declare const MtDrawer: React.FC; export default MtDrawer;