import type { PanelProps } from 'rc-dialog/lib/Dialog/Content/Panel'; import * as React from 'react'; import type { ModalProps, ModalFuncProps } from './Modal'; export interface PurePanelProps extends Omit, Pick { prefixCls?: string; style?: React.CSSProperties; } export declare function renderCloseIcon(prefixCls: string, closeIcon?: React.ReactNode): JSX.Element; export declare function renderFooter(props: Pick & { onOk?: React.MouseEventHandler; onCancel?: React.MouseEventHandler; }): string | number | boolean | React.ReactFragment | JSX.Element | null; export default function PurePanel(props: PurePanelProps): JSX.Element;