import { DrawerProps } from 'antd'; import './DDrawer.less'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface DDrawerProps extends DrawerProps { } declare const DDrawer: { (props: DDrawerProps): JSX.Element; propsDef: PropsTypes[]; title: string; isContainer: boolean; isModal: boolean; icon: JSX.Element; }; export default DDrawer;