import { default as React } from 'react'; import { DrawerProps as AntDrawerProps } from 'antd'; import { BaseComponentProps, DataSetConfig } from '../../types/common'; /** * AndDrawer Props 接口 */ export interface AndDrawerProps extends Omit, BaseComponentProps, DataSetConfig { /** 关闭动作 */ closeAction?: string; /** 关闭回调 */ onClose?: () => void; } /** * AndDrawer 组件 * 封装 Ant Design Drawer,支持数据绑定和动作解析 */ export declare const AndDrawer: React.FC; export default AndDrawer; //# sourceMappingURL=index.d.ts.map