import React from 'react'; import { DrawerProps } from 'antd/lib/drawer'; import './index.less'; export interface ResizeDrawerProps extends DrawerProps { resizeWidth?: number; resizeMinWidth?: number; resizeMaxWidth?: number; children?: React.ReactNode; } declare const ResizeDrawer: (props: ResizeDrawerProps) => React.JSX.Element; export default ResizeDrawer;