import React from "react"; import "./index.less"; interface DrawerProps { open: boolean; className?: string; height?: number; children: React.ReactNode; onClose: () => void; } declare const Drawer: (props: DrawerProps) => React.JSX.Element | null; export default Drawer;