1 | import * as React from 'react';
|
2 | import type { PopoverProps } from '.';
|
3 | interface OverlayProps {
|
4 | prefixCls?: string;
|
5 | title?: React.ReactNode;
|
6 | content?: React.ReactNode;
|
7 | }
|
8 | export declare const Overlay: React.FC<OverlayProps>;
|
9 | export interface PurePanelProps extends Omit<PopoverProps, 'children'> {
|
10 | children?: React.ReactNode;
|
11 | }
|
12 | interface RawPurePanelProps extends PopoverProps {
|
13 | hashId: string;
|
14 | }
|
15 | export declare const RawPurePanel: React.FC<RawPurePanelProps>;
|
16 | declare const PurePanel: React.FC<PurePanelProps>;
|
17 | export default PurePanel;
|