antd
Version:
An enterprise-class UI design language and React components implementation
9 lines (8 loc) • 503 B
TypeScript
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<PopoverProps, 'children'> {
children?: React.ReactNode;
}
export declare function RawPurePanel(props: any): JSX.Element;
export default function PurePanel(props: any): React.ReactElement<any, string | React.JSXElementConstructor<any>>;