UNPKG

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