import * as React from 'react'; import type { PopoverProps } from '.'; export declare const getOverlay: (prefixCls: string, title?: PopoverProps['title'], content?: PopoverProps['content']) => JSX.Element | undefined; export interface PurePanelProps extends Omit { children?: React.ReactNode; } export declare function RawPurePanel(props: any): JSX.Element; export default function PurePanel(props: any): React.ReactElement>;