import React from "react"; import "./index.scss"; interface DrawerPropsIF { width: number; height: number; zIndex: number; placement: "left" | "right" | "top" | "bottom"; style: {}; visible: boolean; } declare const Drawer: React.FunctionComponent; export default Drawer;