1 | /// <reference types="react" />
|
2 | import type { DrawerProps } from 'antd';
|
3 | import type { ProHelpPanelProps } from './ProHelpPanel';
|
4 | export type ProHelpDrawerProps = {
|
5 | /**
|
6 | * Ant Design Drawer 组件的 Props,可以传递一些选项,如位置、大小、关闭方式等等。
|
7 | */
|
8 | drawerProps: DrawerProps;
|
9 | } & Omit<ProHelpPanelProps, 'onClose'>;
|
10 | /**
|
11 | * 渲染一个抽屉,其中显示了一个 ProHelpPanel。
|
12 | * @param drawerProps 要传递给 Drawer 组件的属性。
|
13 | * @param props 要传递给 ProHelpPanel 组件的属性。
|
14 | */
|
15 | export declare const ProHelpDrawer: React.FC<ProHelpDrawerProps>;
|