import * as React from 'react'; import './index.scss'; interface ActionProps { /** * 文本 */ text: string; /** * 操作 */ action: string; /** * 样式 */ style: 'primary' | 'secondary' | 'normal'; } export interface DrawerProps { /** * 是否显示 */ visible: boolean; /** * 标题 */ title: string; /** * 弹出位置 */ placement: 'top' | 'left' | 'right' | 'bottom'; /** * 操作项 */ actions: ActionProps[]; /** * 内容 */ children: React.ReactNode; /** * 点击事件 */ onClick: (e: React.MouseEvent) => void; } declare const Drawer: React.FC; export default Drawer;