import React from 'react'; export declare const DrawerStyle: import("styled-components").StyledComponent<"div", any, DrawerProps, never>; /*** END OF STYLE */ export interface DrawerProps { isDrawerVisible?: boolean; placement?: string; w?: string; children?: React.ReactNode; toggledrawer?: any; } declare const Drawer: React.FC; export default Drawer;