import React from 'react'; import type { DrawerProps } from 'antd/lib/drawer'; import type { ButtonProps } from 'antd/lib/button'; export interface PageDrawerProps extends DrawerProps { children?: React.ReactNode; footerConfig?: { onConfirm?: () => void; onCancel?: () => void; confirmButtonProps?: ButtonProps; cancelButtonProps?: ButtonProps; }; } export declare const getContainer: () => HTMLElement; export declare const PageDrawer: ({ children, footer, footerConfig, ...restProps }: PageDrawerProps) => JSX.Element;