import type { PanelProps } from 'rc-dialog/lib/Dialog/Content/Panel'; import * as React from 'react'; import type { ModalFuncProps, ModalProps } from './Modal'; export interface PurePanelProps extends Omit, Pick { prefixCls?: string; style?: React.CSSProperties; } export declare function renderCloseIcon(prefixCls: string, closeIcon?: React.ReactNode): JSX.Element; interface FooterProps { onOk?: React.MouseEventHandler; onCancel?: React.MouseEventHandler; } export declare const Footer: React.FC>; declare const PurePanel: React.FC; export default PurePanel;